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.
我有一个 MVC 项目。在其中,我使用 Telerik 网格。我需要选择是用户服务器还是 ajax 绑定。这两者有什么区别?
有人告诉我,当我通过模型将数据从控制器传递到视图时,这就是服务器绑定。这是真的?如果是,还有什么方法可以传递数据?
每次在浏览器上完成 Ajax 时,服务器绑定都会刷新页面,而无需重新加载页面。至少这与用户的预期不同。
Ajax 绑定将需要一个额外的方法(Telerik 网站上的示例使用“_AjaxBinding()”)。该方法在位于视图中的网格 .ajax() 中调用。
是的,一个正常的调用是服务器绑定。