这是我的代码:
function(id) {
id=$.fn.yiiGridView.getSelection(id);
console.log(id);
jQuery.ajax({
'url':'/index.php?r=client/loadOne',
'data':id,
'cache':false,
'success':function(html){jQuery(
".portlet-60 .portlet-content")
.html(html)}});
它在控制台中输出了这个输出:
["2"]
index.phpGET http://127.0.0.4/index.php?r=client/loadOne&undefined=undefined 500 (PHP Error)
我不明白为什么控制台中的id等于“2”,ajax数据中的bud是未定义的。
答案 0 :(得分:1)
数据应该是哈希而不是单个值