像这样的简单调用:
type = 'theType';
category = 'theCategory';
$('#mydiv').load(
'${request.route_url('theUrl')}',
{type:type, category:category}
);
当我尝试访问对象时导致“无法解码 JSON 对象”错误request.json_body
。查看请求,我可以看到它是一个 POST,X-Requested-With: XMLHttpRequest,并且正文是type=theType&category=theCategory
,当然不是 JSON。
我究竟做错了什么?
我正在使用 Pyramid 1.3、Mako 0.72、jQuery 1.7.2