我已经创建了一个JSON字符串,并将其发布到我的Controller。我也在使用WCF服务
var inputParams = { 键入:“xxx”, 姓名:“yyy” };
var url = '@Url.Action("Action", "Controller")?inputParams=' + JSON.stringify(inputParams);
动态值= WCFServiceClient.GetValues(jSerializer.Serialize(inputParams));
dynamic inputParameters = jSerializer.Deserialize(inputParams);
这一点我的结果如下: - {“Type”:“Student”,“Name”:“Ann”}
我将如何获得'Type'和&的价值'姓名'?
答案 0 :(得分:0)
创建类似
的模型类Public class YourModel
{
Public string type{get;set;}
Public string name{get;set;}
}
//在你的行动中
Public ActionResult yourAction(YourModel Model)
{
// Here You Can Access Your Values
//Like
Model.Type or Model.Name
}
注意:请记住,您的模型属性名称应与传入的stringyfy数组匹配