我有一個問題從JSON數據填充jsgrid,我已經縮小了代碼到一個非常小的實現,但它仍然無法正常工作。 我可以在Chrome調試器中看到,這種格式的REST調用返回的數據JSGrid - 加載JSON數據 - 「未找到」
{數據:[{「名稱」:「我的帳戶」}]}
任何人誰可以看到什麼是錯的?
<script>
$(function() {
$("#jsGrid").jsGrid({
height: "auto",
width: "100%",
sorting: true,
paging: false,
autoload: true,
controller: {
loadData: function (filter) {
console.log(filter);
return $.ajax({
type: "GET",
url: "http://localhost:8888/GetListJSGrid",
data: filter,
dataType: "json"
});
}
},
fields: [
{ name: "Name", type: "text", width: 150 }
]
});
});