我正在尝试将渲染器用于网格内的列。这是json数据
{
"success": true,
"products": [{
"myfield": [30, 50]
}]
}
这是列渲染器的代码
{
text: "Myfield",
dataIndex: 'myfield',
renderer: function (val) {
if (typeof (val) == 'object') {
// Here am getting for 3 times
console.log(val);
return val;
} else {
return val;
}
}
}
在控制台中为什么要打印 3 次?
[30, 50]
[30, 50]
[30, 50]
我正在尝试为数组中的每个值创建跨度元素,因此使用渲染器。
谢谢你的帮助!!