用@Html.Raw 即可,如:
@Html.Raw("{"key1":"v1"}")
" 就不会变成 " 了
加上 :Json.Encode 在view 上后台实体转前台实体更简单:
var jsModel = @Html.Raw(Json.Encode(codeModel)) ;