2013-12-23 59 views
2

我有雙引號中MS-SQL Server中的字符串:

enter image description here

我通過它查看,像這樣:

var json = '@Html.Raw(JsonConvert.SerializeObject(Model))'; 
var viewModelData = $.parseJSON(json); 

在運行時,它呈現像這樣:

var json = '{"Description":"\"I am text in double quotes\""}'; 

但隨後$ .parseJSON()拋出異常:

enter image description here

回答

4

我在這裏做了很多不必要的東西。
我需要的全部是:

var viewModelData = @Html.Raw(JsonConvert.SerializeObject(Model));