在我试图加载到 RoundRectList 的数组中,我想要的标签数据(全名)被分成数组中的 3 个项目(“FullName”+“MiddleName”+“LastName”)。当我构建 JsonRestStore 时,我不能简单地写
var store = new JsonRestStore({ target: url, allowNoTrailingSlash: 1, labelAttribute: "FullName" + "MiddleName" + "LastName" });
因为它显示为正在寻找一个名为“FullNameMiddleNameLastName”的项目。如果我将这三个选项设置为变量,并作为labelAttribute传入,效果是一样的。
有什么方法可以在 JsonRestStore 的 labelAttribute 中做我想做的事情吗?