使用 Mootools 获取 JSON 响应的子数组
mootools 中有 Jquery $.map(array, function(item)) 的替代品吗?
我如何更改以下 JSON 结果
{"totalResultsCount":2,"geonames":[{"countryName":"India","name":"Cochin"},{"countryName":"Canada","name":"Cochin"},{"countryName":"Venezuela","name":"Cochina"}]}
,因为
[{"countryName":"India","name":"Cochin"},{"countryName":"Canada","name":"Cochin"},{"countryName":"Venezuela","name":"Cochina"}]
我需要 mootools 替代以下 jquery
function(data) {
response($.map(data.geonames, function(item) {
return {
label: item.name + (item.adminName1 ? ", " + item.adminName1 : "") + ", " + item.countryName,
}
}))
请任何帮助
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
呃,您可能应该首先阅读 mootools 有关数组的文档。它几乎是相同的,发布这个只是说“我懒得去查找它”。
您可以使用本机数组类型映射方法
Array.map(data.geonames, function(item) {})
- 请参阅 http://jsfiddle.net/TD2rK/1/ - 或通过data.geonames.map(function(item) {})
- 参见http://jsfiddle.net/TD2rK/Array.map()
- 方法#1 - 将通过 AMD 和非扩展原型来证明未来(想想 mootools 2.0 又名 MILK)。er, you should've probably read the mootools documentation on Arrays first. It is nearly identical, posting this just says 'I cannot be bothered to look it up'.
You can use the native Array type map method
Array.map(data.geonames, function(item) {})
- see http://jsfiddle.net/TD2rK/1/ - or call it via the prototype fromdata.geonames.map(function(item) {})
- see http://jsfiddle.net/TD2rK/Array.map()
- method #1 - will be future proof with AMD and non-extended prototypes (think mootools 2.0 aka MILK).