仅检索一次值,而不使用重复返回值的 ItemDataBoundEvent
在 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);
我的问题是我只需要检索国家和城市一次,我想知道如何检索这些值不使用 onListItemDataBound 函数,该函数会重复返回值,直到遍历完所有行。
On DataService.cs, the function returns a list as follows:
[WebMethod()]
public SomeList[] GetListing(
On client side, I have this:
function onListLoadSuccess(someLists) {
var dataList = $find('<%= DataList1.ClientID %>');
dataList.set_dataSource(someLists);
dataList.dataBind();
Then when it is bound to 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);
My issue is I only need to retrieve Country and City once, I wonder how I can retrieve those values without using onListItemDataBound function which repeatedly return the value until all the rows has been run through.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
现在开始工作了……我真傻!
Got it to work now.. silly me!