如何讓使用JSON劍道MVC傭工的CRUD爲contentType中
@(Html.Kendo().DropDownListFor(model => model.ServiceID)
.OptionLabelTemplate("#=optionLabel#")
.ValueTemplate("#=Code#(#=Rate#) - #=Description#")
.Template("#=Code#(#=Rate#) - #=Description#")
.DataTextField("Code")
.DataValueField("ServiceID")
.DataSource(d =>
{
d.Read(read =>
{
read.Action("GetServiceRepository", "Service").Data("...")
.Type(HttpVerbs.Post);
});
})
.OptionLabel(new { optionLabel = Resources.Wording.SelectOne, ServiceID = 0, Rate = 0, Code = "" })
)
我有劍道DROPDOWNLIST使用HTML幫助的方式,而不是JQuery的方式,也初始化。
有無論如何使用JSON
作爲contentType而不是默認application/x-www-form-urlencoded
向/ Service/GetServiceRepository發出發佈請求嗎?
Plz爲您的pomlem和您使用的數據提供了一些詳細信息。 – Rajdeep
我從來沒有明確設置'contentType',我總是使用JSON。你確定這不是你的服務端? –