gpt4 book ai didi

razor - MVC Javascript 序列化格式

转载 作者:行者123 更新时间:2023-12-01 09:32:23 24 4
gpt4 key购买 nike

我在我的 View 中使用 @(new JavaScriptSerializer().Serialize(Model.DateSlotModel))) 并导致 javascript 错误,因为它在脚本 block 中产生以下内容:

var initialData = [{"DateID":"1","DateValue":"4/1/2011"}]); 

我需要做什么才能使输出格式如下?

[{"DateID":"1","DateValue":"4/1/2011"}]

Controller 代码:

jobmodel.DateSlotModel = from d in eventRepository.GetEventDates(eventid)
select new ScheduleDateSlotViewModel
{
DateID = d.DateID.ToString(),
DateValue = d.DateValue.ToShortDateString()
};

谢谢

最佳答案

你试过吗:

 var InitialData = @Html.Raw(new JavaScriptSerializer().Serialize(Model.DateSlotModel)))

关于razor - MVC Javascript 序列化格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5134069/

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