jQuery Data Binding - What's the plugin that's popular these days?

前端 未结 2 1107
隐瞒了意图╮
隐瞒了意图╮ 2021-02-11 02:00

I need some type of JS MVC, DataBinding solution. Similar to implementing a GMAIL Web App. Messages INDEX and Messages Show. where on the messages show, if you modify a message

相关标签:
2条回答
  • 2021-02-11 02:13

    This sounds like a job that knockoutjs could handle. It allows you to associate DOM elements with a data model pretty easily. Technically it's not MVC it's MVVM (model-view-viewmodel).

    0 讨论(0)
  • 2021-02-11 02:17

    Check out Backbone.js, which is built with underscore.js, both very well done and popular these days.

    Neither builds on jQuery. However, both of them strive to be very expressive with minimal code, and as a result, they are both compact and lightweight.

    0 讨论(0)
提交回复
热议问题