tag-it autocomplete返回数据类型问题

时间:2015-10-14 10:19:08

标签: jquery-ui tag-it

我可以从assignedTags获取对象数组。 示例:

var data = {
  label : example,
  id : 1,
  name : example_1
}

自动完成显示label,但在select上,当我调用assignedTags时,我想要发回对象数组,例如:

[{label : example,id : 1,name : example_1}, {label : example,id : 2,name : example_2}, ...]

我该怎么做?

2 个答案:

答案 0 :(得分:0)

使用concat()组合所有数组。 所以Configuration configuration = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); AppSettingsSection appSettings = configuration.AppSettings; string timeToRun = appSettings.Settings["RunTime"].Value;

然后使用array1.concat(array2).将数组转换为JSON对象。

JSON.stringify()

希望这有帮助

答案 1 :(得分:0)

按这样推送一个数组: -

var array = [];
var data={label: example};
array.push(data);