如何允许kendo网格绑定到未定义的字段

问题描述 投票:1回答:2

我有这个json对象

{
  id: string,
  name: string,
  category: {
    id: string
    name: string,         
  }
}

我想要有一个绑定到productCategory.name的列。但是该字段可以为空。当productCategory为null / undefined时,kendo将抛出错误。我怎么能告诉kendo如果字段未定义,只显示空字符串?

编辑

以下是我的示例数据

[{
   "id":1,
   "name":"Spaghetti",
   "category":{
      "id":"1",
      "name":"Food"
}},
{
   "id":2,
   "name":"Coca-cola",
   "category":null
}}]

下面是我的kendo数据源

var kendoDataSource = new kendo.data.DataSource({
        schema: {
            data: "data",
            total: "total",
            model: {
                id: "id",
                fields: {
                    id: { type: "string" },
                    name: { type: "string" },
                    "category.name": { type: "string" }                
                }

            }
        }
    });

上面的数据会抛出“未定义”错误,因为第二个产品没有类别。

kendo-ui kendo-grid
2个回答
0
投票

尝试使用空对象而不是null

创造了一个小提琴,检查这个:

http://jsfiddle.net/Sowjanya51/h930jcru/


0
投票

只需在模型中提供默认值,如下所示:

var kendoDataSource = new kendo.data.DataSource({
        schema: {
            data: "data",
            total: "total",
            model: {
                id: "id",
                fields: {
                    id: { type: "string" },
                    name: { type: "string" },
                    "category.name": { type: "string" },
                    category: { defaultValue: {
                                                id: "",
                                                name: "",         
                                              }
                              }
                }

            }
        }
    });

如果它是null或未定义,这将初始化productCategory。

© www.soinside.com 2019 - 2024. All rights reserved.