我有一个数组,它使用JSON.stringify这样我就可以通过ajax将数据发送给Python处理程序。这使我可以将数据保存为一个刺…括号,引号,等等。我需要这些数据在某种可用的列表或数组中…而不仅仅是字符串。谢谢你的鼓励,谢谢。在
保存在数据库中的字符串格式(数据存储-使用GAE):
[“上午15点”,“下午3点”,“下午4点”,“下午4点”,“下午3点”]
javascript/ajax代码:var ids = new Array();
$('.ui-selected').each(function(){
ids.push($(this).attr('value')); //adds items selected to the array so that they can be passed via ajax
console.log('**item added to data object**');
});
string_ids = JSON.stringify(ids, null); //converts array object to a string to pass via ajax
$.ajax({
type: "POST",
url: '/schedule',
data: {'ids': string_ids}, //string of selected items
});
Python处理程序:
^{pr2}$
Python模型:class AvailableTimes(db.Model):
user = db.StringProperty()
timezone = db.StringProperty()
ids = db.StringProperty()