如何在从服务器端传递的javascript中访问Dictionary Generic对象

时间:2013-01-30 04:01:35

标签: javascript dictionary

我想访问Dictionary Generic对象(从asp.net服务器端传递)在javascript中... &安培;我还想将该字典检索为键值对..

请帮我解决这个问题。在此先感谢。

2 个答案:

答案 0 :(得分:0)

如果你正在使用MVC,可以通过以下方式轻松实现:

<script type="text/javascript">
  var model = @Html.Raw(Json.Encode(Model));
  // go ahead and use the model javascript variable to bind with ko
</script>

您只需将其传递给包含该位代码的视图

答案 1 :(得分:0)

简单一点,尝试使用下面的代码。

<script type="text/javascript">
     var perm =@Html.Raw(Json.Encode(@ViewBag.Message));
</script>