仅检索一次值,而不使用重复返回值的 ItemDataBoundEvent

发布于 2024-11-15 05:20:42 字数 789 浏览 5 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

各自安好 2024-11-22 05:20:42

现在开始工作了……我真傻!

        function onListLoadSuccess(someLists) {  
            alert(someLists[0].City);
            alert(someLists[0].Country);

Got it to work now.. silly me!

        function onListLoadSuccess(someLists) {  
            alert(someLists[0].City);
            alert(someLists[0].Country);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文