Knockout-Kendo下拉列表Ajax observableArray获取所选项目名称

时间:2016-02-15 02:36:08

标签: asp.net-mvc knockout.js kendo-ui telerik kendo-dropdown

我的应用程序是MVC 5,我使用以下Knockout-kendo下拉列表:

 <input data-bind="kendoDropDownList: { dataTextField: 'name', dataValueField: 'id', data: foodgroups, value: foodgroup }" />

   var ViewModel = function () {
        var self = this;
         this.foodgroups = ko.observableArray([
         { id: "1", name: "apple" },
         { id: "2", name: "orange" },
         { id: "3", name: "banana" }
         ]);
        var foodgroup =
        {
            name: self.name,
            id: self.id
        };

        this.foodgroup = ko.observable();
        ko.bindingHandlers.kendoDropDownList.options.optionLabel = " - Select -";
        this.foodgroup.subscribe(function (newValue) {
            newValue = ko.utils.arrayFirst(self.foodgroups(), function (choice) {
                return choice.id === newValue;
            });

            $("#object").html(JSON.stringify(newValue));
           alert(newValue.name);
        });
    };
    ko.applyBindings(new ViewModel());

由于这个答案Knockout Kendo dropdownlist get text of selected item

,它很有效

然而,当我将observableArray更改为Ajax时:

       this.foodgroups = ko.observableArray([]),
                $.ajax({
                    type: "GET",
                    url: '/Meals/GetFoodGroups',

                    contentType: "application/json; charset=utf-8",
                    dataType: "json",
                    success: function (data) {
                        self.foodgroups(data);
                    },
                    error: function (err) {
                        alert(err.status + " : " + err.statusText);
                    }
                });

Controller - 从ms sql server获取表:

 public JsonResult GetFoodGroups()
            {
                var data = db.FoodGroups.Select(c => new
                {
                    id = c.FoodGroupID,
                    name = c.FoodGroupName
                }).ToList();

                return Json(data, JsonRequestBehavior.AllowGet);
            }

enter image description here

当我提醒项目名称时,我收到此错误

 Unable to get property 'name' of undefined or null reference

使用Ajax对数组项进行硬编码有什么区别。

1 个答案:

答案 0 :(得分:2)

'id'字段在硬编码数组中具有字符串数据类型。

enter image description here

'id'字段在ajax数组中有 number 数据类型。

enter image description here

因此,'id'字段在两个数组中都有不同的数据类型。但是在条件允许的情况下,您使用了 === 运算符,因此会检查以及数据类型

enter image description here

对于ajax数组值相同但其数据类型不同,因此它不返回结果。

如果有任何疑虑,请告诉我。