admin管理员组文章数量:1345031
Is there a forked/maintained version of backbone that pletely eliminates the need for jquery or zepto to use both the router and views?
I wouldn't mind using backbone but there's no way in heck I'd force a jquery dependency on my page just to use it.
If a solution doesn't exist can someone post a gist of what needs to be changed exactly?
Is there a forked/maintained version of backbone that pletely eliminates the need for jquery or zepto to use both the router and views?
I wouldn't mind using backbone but there's no way in heck I'd force a jquery dependency on my page just to use it.
If a solution doesn't exist can someone post a gist of what needs to be changed exactly?
Share Improve this question asked Apr 4, 2012 at 15:26 AntelopeSaladAntelopeSalad 1,7261 gold badge17 silver badges28 bronze badges 2-
Given that the event handling system for views is based on
$.delegate
and friends, I think you're very much out of luck. – mu is too short Commented Apr 4, 2012 at 17:11 - Indeed. :/ [character limitation] – AntelopeSalad Commented Apr 4, 2012 at 17:56
3 Answers
Reset to default 9If you want Backbone to handle DOM manipulation, DOM events, and AJAX requests, then you'll need another library to do this. It doesn't have to be jQuery or Zepto - Backbone also supports Ender, and you could theoretically use any library that can do DOM selection and supports a subset of jQuery-style methods. A quick look through the annotated source code shows that you need the following methods:
$(selector)
$.ajax()
$(selector).find()
$(selector).bind()
$(selector).unbind()
$(selector).delegate()
$(selector).remove()
$(selector).attr()
$(selector).html()
If you don't want Backbone to deal with this stuff, you can pretty easily remove the requirements by overwriting the methods that use them - e.g. you can dispense with .attr()
and .html()
by setting Backbone.View.prototype.make = function() {}
. Or just don't use Backbone.View
- that removes the need for everything but $.ajax()
(unless you're using pushState
, in which case you need event binding too).
Yup here's one: https://github./inkling/backbone.native. It's a tiny adapter that allows Backbone to work while relying on only native DOM APIs.
You can try to use jBone, this is library for DOM manipulations in modern browsers, jBone developed special for Backbone, only 2kb gzipped and jQuery like API.
本文标签: javascriptRemoving the jqueryzepto dependency on backbonerouter and viewsStack Overflow
版权声明:本文标题:javascript - Removing the jqueryzepto dependency on backbone.router and views - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743793336a2539980.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论