Backbone toJSON

时间:2012-08-29 13:09:29

标签: javascript json backbone.js zepto parse-platform

我要么非常累,要么真的很困惑...但我不确定...我有一个parse.com javascript设置(它就像使用解析而非骨干的backbone.js)。我有一个模型和一个集合,一切都有效。但是darn toJSON();不起作用,它只是在console.log中返回一个[]但是如果我在Chromes控制台中运行相同的函数它会工作并返回正确的值。

任何帮助!?

所有这些可爱的代码都包含在一个文档准备好了(并且它有一些其他不相关的代码,是的,我有Parse.initialize()'它。

  var Schedule = Parse.Object.extend({
    className: "schedule"
  });

  var ScheduleList = Parse.Collection.extend({
    model: Schedule
  });

   schedule = new ScheduleList();
      schedulejs3 = schedule.toJSON();
      schedule.query = new Parse.Query(Schedule);
      schedule.query.ascending("date");
      schedule.query.limit('500');
      schedulejs2 = schedule.toJSON();
      schedule.fetch();

      schedulejs = schedule.toJSON();
      console.log(schedulejs,schedulejs2,schedulejs3); <-- All three return []

  var ScheduleView = Parse.View.extend({
    el: $("#schedule-holder"),
    initialize: function() {
      this.schedule = new ScheduleList();
      this.schedule.query = new Parse.Query(Schedule);
      this.schedule.query.ascending("date");
      this.schedule.query.limit('500');

      this.schedule.fetch();

      this.schedule.js = this.schedule.toJSON();

      this.render;
    },

    render: function() {
      var template = Handlebars.compile($("#schedule-item").html());
      $(this.el).html(template({shows: this.schedule.toJSON()}));
      return this;
    }
  });

  var App = new ScheduleView().render();

但是如果我在Chrome中打开控制台并运行schedule.toJSON();我得到了正确的价值......正如你所看到的那样,我已经扼杀了我的骨干。设置试图解决这个问题(因为你想知道为什么一切都到处都是)。还有一点,我正在使用Zepto.js而不是jQuery。

谢谢!

1 个答案:

答案 0 :(得分:19)

可能在你执行schedule.toJSON()时,它仍然是空的。

请注意,Collection.fetch()异步方法。

尝试修改此行:

schedule.fetch();

由此:

schedule.fetch({ success: function() { console.log( "what about now?", schedule.toJSON() ) } };

(可能你会遇到一个上下文问题,尝试让schedule变量可以访问success处理程序)