我有这个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" }
}
}
}
});
上面的数据会抛出“未定义”错误,因为第二个产品没有类别。
只需在模型中提供默认值,如下所示:
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。