Mootools JSON(拉动顶级项目)

发布于 2024-12-11 01:54:52 字数 635 浏览 0 评论 0原文

尝试从我的 json 请求中提取所有“标题”,但没有成功。

当前 Fiddle = http://jsfiddle.net/DZkZV/

当前 Json:

    {
      "title": "Title 1"
    },
    {
      "title": "Title 2"
    },
    {
      "title": "Title 3"
    },
    {
      "title": "Title 4"
    }

当前JavaScript:

var addTopTopItemsLi = function(title){
  title.each(function(){
    var el = new Element('li'),
             htmltxt = new Element('span', {'class': 'pgTitle','html': title.title}).inject(name);
             inject(gallery);
  });

};

Trying to pull all "titles" from my json request, with no success.

Current Fiddle = http://jsfiddle.net/DZkZV/

Current Json:

    {
      "title": "Title 1"
    },
    {
      "title": "Title 2"
    },
    {
      "title": "Title 3"
    },
    {
      "title": "Title 4"
    }

Current Javascript:

var addTopTopItemsLi = function(title){
  title.each(function(){
    var el = new Element('li'),
             htmltxt = new Element('span', {'class': 'pgTitle','html': title.title}).inject(name);
             inject(gallery);
  });

};

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

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

发布评论

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

评论(1

饭团 2024-12-18 01:54:52

你现在有点操之过急了,不是吗:)

http://jsfiddle.net/ dimitar/DZkZV/1/

点:
- json 需要是一个项目数组。
- 你必须传递整个响应然后循环它。
- .each 循环中的异常和不一致的引用。

ps 新的 firebug 1.8.3 太差了,无法显示 ajax 后的内部异常,太令人沮丧了......

you are jumping the gun a little bit now, aren't you :)

http://jsfiddle.net/dimitar/DZkZV/1/

points:
- json needed to be an array of items.
- you have to pass on the whole response and then loop it.
- exceptions in the .each loop and inconsistent references.

p.s. the new firebug 1.8.3 is so poor it failed to show the inner exceptions after the ajax, so frustrating...

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