- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的 jsFiddle:
https://jsfiddle.net/Frankistan/dqbexhr0/1/
window.Wine = Backbone.Model.extend({
urlRoot: "api/wines",
defaults: {
"id": null,
"name": "",
"grapes": "",
"country": "USA",
"region": "Wisconsin",
"year": "",
"description": "",
"picture": "none.jpg"
}
});
var WineCollection = Backbone.Collection.extend({
model: Wine,
url: "api/wines"
});
window.StartView = Backbone.View.extend({
initialize: function () {
this.template = _.template($('#start-template').html());
},
render: function () {
this.$el.html(this.template());
return this.el;
}
});
window.HeaderView = Backbone.View.extend({
events: {
'click .new': 'newWine'
},
initialize: function () {
this.template = _.template($('#header-template').html());
},
render: function () {
this.$el.html(this.template());
return this.el;
},
newWine: function () {
debugger
app.navigate('wines/new', true);
return false;
}
});
window.WineListView = Backbone.View.extend({
tagName: 'ul',
initialize: function () {
this.collection.on('add', this.appendNewWine, this);
this.collection.on('reset', this.render, this);
},
render: function () {
_.each(this.collection.models, function (wine) {
this.appendNewWine(wine);
}, this);
return this.el;
},
appendNewWine: function (wine) {
var wineListItemView = new WineListItemView({
model: wine
}).render();
this.$el.append(wineListItemView);
}
});
window.WineListItemView = Backbone.View.extend({
tagName: 'li',
initialize: function () {
this.template = _.template($('#wine-list-item-template').html());
this.model.bind('destroy', this.remove, this);
this.model.bind('change:name', this.render, this);
},
render: function () {
console.log('ListItemView render: ');
this.$el.html(this.template(this.model.toJSON()));
return this.el;
},
update: function () {
console.log('actualizando nombre en la lista');
debugger
this.$el.find('a').text(this.model.get('name'));
}
});
window.WineDetailView = Backbone.View.extend({
events: {
"change input": "change",
"click .save": "saveWine",
"click .delete": "deleteWine"
},
initialize: function () {
this.template = _.template($('#wine-details-template').html());
this.model.bind("destroy", this.remove, this);
},
render: function () {
console.log('DetailView render: ');
this.$el.html(this.template(this.model.toJSON()));
return this.el;
},
saveWine: function () {
// version 1
var self = this;
this.model.set({
name: $('#name').val(),
grapes: $('#grapes').val(),
country: $('#country').val(),
region: $('#region').val(),
year: $('#year').val(),
description: $('#description').val()
});
if (this.model.isNew()) {
this.model.save({
wait: true
}, {
success: function (wine, reponse, options) {
app.wineList.add(wine);
Backbone.history.navigate('wines/' + self.model.id, {
trigger: true
});
}
});
} else {
this.model.save();
}
return false;
},
deleteWine: function () {
debugger
var options = {
success: function (model, response) {
console.log('delete wine success');
console.log(model);
console.log(response);
},
error: function (model, response) {
console.log('delete wine error');
console.log(response);
}
};
this.model.destroy(options);
},
change: function (event) {
var target = event.target;
console.log('changing ' + target.id + ' from: ' + target.defaultValue + ' to: ' + target.value);
}
});
var AppRouter = Backbone.Router.extend({
initialize: function () {
$('#header').html(new HeaderView().render());
},
routes: {
"": "list",
"wines/new": "newWine",
"wines/:id": "wineDetails"
},
list: function () {
this.before(function () {
this.showView('#content', new StartView());
});
},
wineDetails: function (id) {
this.before(function () {
var wine = this.wineList.get(id);
this.showView('#content', new WineDetailView({
model: wine
}));
});
},
newWine: function () {
this.before(function () {
this.showView('#content', new WineDetailView({
model: new Wine()
}));
});
},
showView: function (selector, view) {
if (this.currentView) this.currentView.close();
$(selector).html(view.render());
this.currentView = view;
return view;
},
before: function (callback) {
if (this.wineList) {
if (callback) callback.call(this);
} else {
this.wineList = new WineCollection();
var self = this;
this.wineList.fetch({
success: function (collection, response, options) {
var winelist = new WineListView({
collection: collection
}).render();
$('#sidebar').html(winelist);
if (callback) callback.call(self);
}
});
}
}
});
Backbone.View.prototype.close = function () {
// console.log('Closing view ' + this);
if (this.beforeClose) {
this.beforeClose();
}
this.remove();
this.off();
};
$(document).ready(function () {
app = new AppRouter();
if (!Backbone.history.started) {
// Backbone.history.start({ pushState: true });
Backbone.history.start();
}
});
一切正常,但是当我通过单击“.delete”按钮销毁模型时,正如您在第 137 行到 151 行中看到的那样,“deletewine”函数被触发,尽管模型已在服务器上删除(200 响应),成功回调不会被触发!!
知道可能是什么问题吗?
最佳答案
我无法运行你的 fiddle ,我不知道你的服务器端代码是什么。但我猜你的服务器端代码返回的值不正确。
它的响应应该是一个 json(任何 json 哈希值)。例如它可以返回: {success: true}
也许您的代码什么也没有返回?
您还可以告诉 Backbone 不要期待服务器的任何响应:
deleteWine: function () {
debugger
var options = {
contentType: false,
processData: false,
success: function (model, response) {
console.log('delete wine success');
console.log(model);
console.log(response);
},
error: function (model, response) {
console.log('delete wine error');
console.log(response);
}
};
this.model.destroy(options);
}
请查看this question .
关于javascript - 模型销毁成功回调不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29200430/
当你有一个对象 OBJ1 包含一个关键部分 CS 和一个指向另一个对象 OBJ2 的指针时,我无法弄清楚什么是正确的关闭过程 假设您有两个函数 A 和 B。 A进入临界区,修改OBJ2中的数据后离开临
我有一个成员变量声明为 CComPtr m_spXMLDoc; XML 文档是这样创建的 CoCreateInstance(CLSID_DOMDocument, NULL, CLSCTX_INPROC
在我的工作平台中,我遇到了 session_destroy 问题 function logout() { $_SESSION['id'] = ''; session_destroy(); } 在这
如何使用 destroy 删除 jScrollPane。请您给出以下代码的简单示例: $(document).ready(function() { $(".div1").jScrollPane
这是我在这里发表的第一篇文章,但我想对社区表示感谢,因为通过来到这里并在已经得到解答的问题中找到解决方案,我已经无数次找到了问题的解决方案。 话虽这么说,我想进入正题。我正在 Code Gear 的
我在导航 View 中工作。在此导航 View 中,您可以偶然发现个人资料页面。在此个人资料页面中,您可以看到与当前个人资料相关的其他个人资料(基本上是数据 View 中显示的图片)。您可以通过点击这
我想销毁项目中的 session ,这样当我单击“注销”时,它会转到页面“KillSession.jsp”,在该文件中我编写了“session.invalidate();”然后我将用户重定向到登录页面
我有关于 Thread 的 2 问题,我只是想澄清一些事情。使用以下代码: public class MyThread implements Runnable { Boolean StopTh
我遇到了内存泄漏,代码类似于下面的代码(这是每个循环都有不同输入的模拟)。 问题 对象 Object_XXX 非常复杂,它与数据库以及其他填充了数据库数据的对象有连接。 for(int i=0
当我在 Python 中启动一个类时,我给它一些值。然后我调用类中执行某些操作的方法。这是一个片段: class TestClass(): def __init__(self):
我想删除所有 div、类、属性和几乎所有 CKEDITOR 添加到 DOM 的内容。例如调用 jquery tabs("destroy");将删除所有由 jQuery 选项卡添加的 div。我怎样才能
我想清除析构函数中的一个映射,但我不知道它是否为空。如果我按如下方式清除它可以吗? for(std::map::iterator it = m_map.begin(); it != m_map.end
我正在尝试克隆 TikTok 应用。对于主屏幕,我制作了一个 VerticalViewPager(自定义 View 分页器),其中包含“点赞”按钮、标题和评论。我正在从 Firebase 检索视频。
我正在制作自己的游戏。目标之一是在世界中拥有尽可能多的物体。在这个游戏中,需要在一些不可预测的时间段内创建许多对象(比如武器开火会创建一个对象),一旦该弹丸击中某物,该对象也需要被摧毁(也许它击中的东
有没有办法在 JavaScript 中破坏 HTML5 WebWorker? 这是我的情况:我有一个 Web 应用程序生成相当数量的 WebWorker(在 16 到 32 之间的任何地方)来优化一些
如何销毁 php 中的 session ? 事情是当用户点击注销按钮时, session 将结束,他将被重定向到 index.php 这是我的代码 客户.php 这是来自用户想要再次登录的 ind
关于 GtkBuilder 的问题。 当我们取消引用构建器指针时,它是否会破坏构建器创建的所有屏幕/小部件? if( builder_ptr ) g_object_unref(G_OBJECT
有没有办法销毁 WebView 实例?如果页面加载,并说视频开始播放,我希望能够,当我隐藏 WebView 时,基本上可以销毁它,或者至少重置它。 我知道我可以听 visibleProperty 并执
我有一组可拖动的元素。如何删除可拖动功能? $('.draggable').draggable('disable') 在我的情况下不是一个选项 $('.draggable').draggable('d
下面的代码会抛出一个 EZDecompressionError 消息 'Invalid ZStream operation' 每当行 Reader.Free 被执行。有人可以告诉我这段代码有什么问题吗
我是一名优秀的程序员,十分优秀!