使用 Mootools 获取 JSON 响应的子数组

发布于 2024-12-24 22:31:57 字数 726 浏览 0 评论 0 原文

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,

        }

}))

请任何帮助

Is there any altenative for Jquery $.map(array, function(item)) in mootools.

How can I change following JSON result

{"totalResultsCount":2,"geonames":[{"countryName":"India","name":"Cochin"},{"countryName":"Canada","name":"Cochin"},{"countryName":"Venezuela","name":"Cochina"}]}

as

[{"countryName":"India","name":"Cochin"},{"countryName":"Canada","name":"Cochin"},{"countryName":"Venezuela","name":"Cochina"}]

I need mootools alternate for following jquery

    function(data) {
    response($.map(data.geonames, function(item) {


        return {
            label: item.name + (item.adminName1 ? ", " + item.adminName1 : "") + ", " + item.countryName,

        }

}))

Any help please

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

刘备忘录 2024-12-31 22:31:57

呃,您可能应该首先阅读 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 from data.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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文