javascript – 无法将Rest JSON数据绑定到WinJS中的ListView控件
作者:互联网
我正面临一个问题.我试图将ListView WinJS控件绑定到返回JSON对象的RESTful服务.
这是我的设计(default.html)
<body>
<button id="btnExample">REST Service</button>
<div id="divDisplayItems" data-win-control="WinJS.Binding.Template">
<div>
<table border="1">
<tr>
<td><b>PersonId</b></td>
<td><b>PersonName</b></td>
</tr>
<tr>
<td><h4 data-win-bind="innerText: PersonId"></h4></td>
<td><h4 data-win-bind="innerText: PersonName"></h4></td>
</tr>
</table>
</div>
</div>
<div
id="basicListView"
style="width:250px;height:500px"
data-win-control="WinJS.UI.ListView"
data-win-options="{itemDataSource :SourceData.itemList.dataSource, itemTemplate: select('#divDisplayItems'),layout : {type: WinJS.UI.ListLayout}}"
>
</div>
</body>
这是我的default.js代码
// For an introduction to the Blank template, see the following documentation:
// http://go.microsoft.com/fwlink/?LinkId=232509
(function () {
"use strict";
var app = WinJS.Application;
var activation = Windows.ApplicationModel.Activation;
WinJS.strictProcessing();
app.onactivated = function (args) {
if (args.detail.kind === activation.ActivationKind.launch) {
if (args.detail.previousExecutionState !== activation.ApplicationExecutionState.terminated) {
// TODO: This application has been newly launched. Initialize
// your application here.
} else {
// TODO: This application has been reactivated from suspension.
// Restore application state here.
}
args.setPromise(WinJS.UI.processAll());
document.getElementById("btnExample").addEventListener("click", JSonRecord, false);
}
};
app.oncheckpoint = function (args) {
// TODO: This application is about to be suspended. Save any state
// that needs to persist across suspensions here. You might use the
// WinJS.Application.sessionState object, which is automatically
// saved and restored across suspension. If you need to complete an
// asynchronous operation before your application is suspended, call
// args.setPromise().
};
function JSonRecord(event) {
WinJS
.xhr(
{ url: "URL/EmployeeList" }
)
.then
(
function (response) {
var sourceData = JSON.parse(response.responseText);
var datalist = new WinJS.Binding.List(sourceData.EmployeeDetailsResult);
var dataMembers = { itemList: datalist };
WinJS.Namespace.define("SourceData", dataMembers);
}, function (error)
{
console.log(error);
}
);
}
app.start();
})();
内容是每当“btnExample”被cliekd时,应该填充ListView.该服务工作正常,我能够获得适当的数据.但是我想要的那一刻
加载页面,它正在崩溃.
如果我评论
"data-win-options="{itemDataSource :SourceData.itemList.dataSource, itemTemplate: select('#divDisplayItems'),layout : {type: WinJS.UI.ListLayout}}"
至少页面正在加载.
有什么问题,如何将数据绑定到ListView控件?
谢谢
解决方法:
Default.js中的2个更改
第一次改变
var app = WinJS.Application;
/ *插入行
WinJS.Namespace.define("SourceData",
{
itemList: new WinJS.Binding.List([])
})
* /
var activation = Windows.ApplicationModel.Activation;
第二次改变
function (response)
{
var sourceData = JSON.parse(response.responseText);
var datalist = new WinJS.Binding.List(sourceData.EmployeeDetailsResult);
<-- basicListView is the Name of the div where you are binding the datasource -->
basicListView.winControl.itemDataSource = datalist.dataSource;
}
观看this视频以便更好地理解.
希望这可以帮助
标签:winjs,javascript,windows-8 来源: https://codeday.me/bug/20190901/1783108.html