我正在做一个剑道移动应用程序,我正在尝试从数据库中绑定数据以使用 json 调用列出。我尝试使用以下代码,但它不起作用请帮我解决这个问题......提前致谢......
我的代码在这里:
$(document).ready(function () {
var dataSource = new kendo.data.DataSource({
transport: {
read: {
type: "POST",
url: "WebService/listing.php",
contentType: 'application/json; charset=utf-8',
datatype: "json"
}
}
});
dataSource.bind("change", function () {
$("#content").html(kendo.render(template, dataSource.view()));
});
dataSource.read();
console.log(dataSource.view());
});