gpt4 book ai didi

jquery - $.parseJSON 与 JsonConvert.SerializeObject

转载 作者:行者123 更新时间:2023-12-01 02:44:15 26 4
gpt4 key购买 nike

将 .net 类序列化为 json 并在 javascript 中使用它的正确方法是什么?

例如在服务器端我们有这个:

    public ActionResult Index()
{
var someClass = new SomeClass { Message = "let's try <b> this </b> and this \" " };
ViewBag.someDataJson = JsonConvert.SerializeObject(someClass);
return View();
}

public class SomeClass
{
public string Message;
}

在客户端:

<script type="text/javascript">
$(document).ready(function() {
var someData = $.parseJSON("@Html.Raw(ViewBag.someDataJson)");
alert(someData.Message);
});
</script>

结果:

var someData = $.parseJSON("{"Message":"let's try <b> this </b> and this \" "}");

这是不正确的。另外,如果没有 Html.Raw() 结果也会不正确:

var someData = $.parseJSON("{&quot;Message&quot;:&quot;let&#39;s try &lt;b&gt; this &lt;/b&gt; and this \&quot; &quot;}");

谢谢!

最佳答案

这里是a small blog post about doing exactly this.

它使用 Json.Encode(someClass)

var someData = @Html.Raw(Json.Encode(yourViewModelCSharpObject))

您将向 View 传递实际对象,而不是 JSON 字符串表示形式。

祝你好运!

关于jquery - $.parseJSON 与 JsonConvert.SerializeObject,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15822323/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com