Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用此处找到的主干.basicauth 库替换 Backbone.sync。
这可以在应用程序级别上完成吗 - 例如在 main.js 中的 App.init 上 - 并避免覆盖每个模型或集合上的“同步”
项目
资源
是的,您可以覆盖 Backbone.sync 函数,它将覆盖所有模型和集合使用的函数
Backbone.sync = function(){ //Your code }
更多信息
http://backbonejs.org/docs/backbone.html#section-134