是否有没有外部依赖项的 JavaScript MVC 框架?
有谁知道 JavaScript 中的 MVC 框架不依赖其他库? 我正在思考backbone.s或spine.js的思路,它们都声称没有依赖关系,但它们的代码显然使用了jQuery或Zepto函数。 我正在寻找一种仅使用本机 JavaScript 的工具,因此可以与任何框架一起使用(jQuery、MooTools、Dojo 或无框架)
Does anyone know of a MVC framework in JavaScript that is free of other library dependencies?
I'm thinking along the lines of backbone.s or spine.js both of which CLAIM to have no dependancies but then their code clearly uses jQuery or Zepto functions.
I'm after one that uses native JavaScript only and therefore can be used with any framework (jQuery, MooTools, Dojo OR NO FRAMEWORK)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能想研究一下 Knockout,它不是 MVC - 它是 MVVM,并解决了我在 javascript 中的大部分复杂 ui 代码。 Knockout 就像数据、事件和小部件之间的粘合剂 - 它有助于编写干净且易于维护的 JS 接口。
最后但并非最不重要的一点是,它不依赖于任何其他库,纯 JS。
You may want to look into Knockout, it's not MVC - it's MVVM and solved most of my complex ui code in javascript. Knockout is like the glue between the data, events and the widgets - it helps write clean and easy to maintain JS interfaces.
Last but not least it is not tied to any other library, pure JS.
您是否看过:http://www.sproutcore.com/ 或 http://cappuccino.org/ ?它们不仅仅是 MVC 框架,但据我所知,它们并不依赖于其他库。我正在寻找相同的东西,这些可能有点矫枉过正,具体取决于您想要实现的目标。
Have you taken a look at: http://www.sproutcore.com/ or http://cappuccino.org/ ? They're a bit more than just MVC frameworks but they do not rely on other libraries as far as I can tell. I'm searching for the same and these maybe overkill, depending on what you want to achieve.