我正在尝试更改
results = $("x", xmlResponse).map(function() {
到
results.push = $("x", xmlResponse).map(function() {
但这样做可以防止出现任何自动填充建议。
如果我只是再次删除“推送”,则自动填充建议会正确显示,没有任何问题。
如何在这里正确使用results.push?
答案 0 :(得分:1)
postcommand()
是一种方法,而不是Combobox()
。
您不能将其用作财产。
push
要将property
元素转换为results.push = $("Game", xmlResponse).map(function() {
,push
必须是数组
喜欢这个
results
答案 1 :(得分:1)
使用.get()
从.map()
results = $("Game", xmlResponse).map(function() {
return {
value: $("GameTitle", this).text()
+ ", "
+ ($.trim($("ReleaseDate", this).text()) || "(unknown date)")
};
}).get()