我有一个这样的数据结构:
我尝试通过 $.ajax 将其发送到服务器:
$.ajax({
type: 'POST',
data: post_obj, //this is my json data
dataType: 'json',
url: '',
success: function(e){
console.log(e);
}
});
我想通过烧瓶把它放在服务器上:title = request.form['title']
工作正常!
但我怎么得到content
?
request.form.getlist('content')
不起作用。
这是萤火虫中的帖子数据:
非常感谢 :D