0
我將如何能夠顯示在一個div內使用foreach的FileList
的數組值?並逐項重申項目?如何在網頁中顯示陣列值從淘汰賽js陣列
DataService的代碼:
變種GetUploads =函數(GetUploadsObservable){
var Importoptions = {
url: 'api/test/GetUploads',
type: 'GET',
async: true,
contentType: false,
processData: false,
};
return $.ajax(Importoptions).then(GetDataSucceded).fail(queryFailed);
function GetDataSucceded(data) {
var Filelist = [];
if (data != null) {
data.forEach(function (item) {
Filelist.push(new model.FolderFiles(item));
});
}
GetUploadsObservable(Filelist);
//alert("YYYY");
console.log(Filelist);
}
}
HTML代碼:
<div id="timesheet" class="" data-bind="foreach: Filelist" style="border:solid 1px red;">
</div>
目前還不清楚你問什麼。如果有幫助,以下是foreach參考。 http://knockoutjs.com/documentation/foreach-binding.html –