使用 JQuery 访问 ViewData
我正在开发一个mvc应用程序。我为不同的操作编写了一个jquery并保存到一个名为my.js的js文件中。我将该 js 文件包含到我的页面中。
<script src="../../Scripts/my.js" type="text/javascript"></script>
我如何从该 js 文件访问 ViewData。我尝试了很多方法,但还没有奏效。 我用来从 js 文件访问 ViewData 的代码如下所示。
var CalanderPreference = "<%= ViewData["CalanderPreference"] %>";
但它返回一个错误,如“预期;” '
有什么想法吗?
I am developing a mvc application.I wrote a jquery for different operations and saved in to a js file named my.js. And i included that js file into my page.
<script src="../../Scripts/my.js" type="text/javascript"></script>
How can i access ViewData from that js file. I tried many methods.But didnt worked yet.
The code i used to access ViewData from js file is shown below.
var CalanderPreference = "<%= ViewData["CalanderPreference"] %>";
But it returning an error like 'Expected ; '
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ViewData 在客户端上不可访问,因为它仅存在于视图渲染中。
您可以在服务器端将视图数据序列化为 json,将其写入隐藏字段,然后在客户端将其解析为 javascript 对象。
ViewData is not accessible on client, because it exists only on view rendering.
You could serialize your view data to json on server side, write it to hidden field, and them parse it to javascript object on client side.
您可以在视图上创建 javascript 对象,如本例所示。
将其放入您的视图中,而不是放在单独的文件中:
You can create your javascript object on the view like in this example.
Put this into your view and not in a seperate file: