解除绑定.create()

时间:2012-07-20 18:26:09

标签: javascript backbone.js parse-platform

  

!校正

     

绑定不是它。当您添加到架构中时,会逐渐创建与缺失值不一致的内容(在我的案例中为Relations)。我的.create()调用以这样的方式命中Parse / Mongo,模型绑定要求重新启动主视图。速记解决方案:偶尔擦除数据:)

...

我的主视图有_.bindAll(this, 'addOne', 'addAll', 'render', 'logOut', '...'); 在另一个视图中,我使用这两种链式方法设置Parse.Relation:

1  // If you hit return in the add friend input field, create new Email model 
2  // and friend it
3  addFriendOnEnter: function(e) {
4    var self = this;
5    console.log("About to create email "+self.emailInput.val());
6    self.emails.create(
7      {
8        email:   self.emailInput.val(),
9        ACL:     new Parse.ACL(Parse.User.current())
10     },
11     {
12       success: function (email) {
13         console.log("Email added "+email.get("email"));
14         self.addFriend(email);
15       }
16     },
17     {
18       silent:true
19     }
20   );
21   console.log("Created email");
22 },
23
24 addFriend: function(email) {
25   console.log("Add friend relation to topic "+email.get("email"));
26   this.friendsRel.add(email);
27   console.log("Save topic");
28   this.options.topic.save({silent:true});
29   console.log("Render friend");
30   this.renderOneFriend(email);
31   console.log("Clear input val");
32   this.emailInput.val('');
33 },

我看到的最后一个日志是第21行,似乎没有调用addFriend,基本上应用程序会刷新自己,即我被抛回到重新呈现自己的主视图。

我怀疑的一个方向是主视图绑定到任何模型更改,包括.create()调用。

如何取消绑定该特定电话?

谢谢, 刚

2 个答案:

答案 0 :(得分:0)

您可以忘记点击处理程序中的e.preventDefault()吗?

答案 1 :(得分:0)

  1. 我会在你的创建调用中添加一个错误处理程序,所以你知道是否可能会调用而不是成功。

  2. 您是否尝试过使用Chrome的JavaScript调试程序中的代码?然后你就会知道哪个函数被调用了。

  3. silent:true应该与成功在同一个选项对象中。

  4. 您可以尝试使用“var email = new Email(...)”等创建对象,然后将其保存并在成功处理程序中调用self.emails.add(email)进行保存。