MVC 和 jQuery 模板?
我有一个控制器,它将自定义模型返回到其视图。该模型中包含在视图中呈现的产品和价格的集合,以及页面所需的其他信息。
不过,我想使用 jQuery 模板来允许 AJAX 更新这些产品和价格。
我想不可能用初始值渲染模板,那么如何返回一个既包含“静态”信息(即不会在页面上更改)又包含我确实希望包含在模板中的信息(因为它会发生变化)的模型取决于用户的输入?
I have a controller that returns a custom model back to its view. Within this model is a collection of products and prices which are rendered in the view, alongside other information that is required by the page.
However, I'd like to use jQuery templates to allow an AJAX update of those products and prices.
I guess its not possible to render the template with initial values so how do I return a model that includes both "static" information (ie wont chnage on the page) and also information that I do want to include in the template as it will change dependent on input of the user?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过 jquery 从您的控件加载内容,如下所示:
Jquery:
控制器
You can load content via jquery from your control like this:
Jquery:
Controller