jQuery Templates vs Partial Views in ASP.NET MVC

后端 未结 3 1247
北恋
北恋 2021-02-06 04:38

I\'m taking a look at jQuery templates. It looks really interesting - easy syntax, easy to use, very clean.

However, I can\'t really see why it\'s better to use jQuery

3条回答
  •  天涯浪人
    2021-02-06 05:30

    I agree that these do overlap. There are several different ways to implement the same piece of software, and much of your decision on what to use depends on your personal preference and the context of your software.

    Partial view advantages:

    • Type-safe (if using strongly-typed viewmodels)
    • Allows static syntax and type checking.
    • Full code completion / syntax highlighting support in Visual Studio

    jQuery Templates advantages:

    • Allows the page to be updated before performing postbacks or without any postbacks to the server side at all. This can be handy when creating heavily ajaxed interfaces, possibly also with html5-driven offline capabilities.
    • You can retrieve data from the server in JSON format and render that to HTML. JSON is much shorter that HTML formatting, so this can make a difference in page loading times for long lists of data entries when using a slow internet connection.

    So in essence partial views are the more stable and jquery templates are (for ajax websites) the more performant choice. I therefore use partial views for less frequented web pages which need to be developed quickly and jQuery templates for heavily ajaxed web pages where performance really matters.

提交回复
热议问题