在 DataService.cs 上,该函数返回一个列表,如下所示:
[WebMethod()]
public SomeList[] GetListing(
在客户端,我有这个:
function onListLoadSuccess(someLists) {
var dataList = $find('<%= DataList1.ClientID %>');
dataList.set_dataSource(someLists);
dataList.dataBind();
那么当它绑定到DataList1时:
function onListItemDataBound(sender, e) {
var item = e.get_item();
if (item.get_isDataItemType()) {
var someList = item.get_dataItem();
alert(someList.Country);
alert(someList.City);
我的问题是我只需要检索 Country 和 City 一次,我想知道如何在不使用onListItemDataBound函数的情况下检索这些值,该函数重复返回值直到所有行都运行完。