我不太确定如何提出这个问题。我之前实际上有这个工作,然后我做了一些看似微不足道的改变并打破了它,我不知道如何让它工作。
我想要做的是在我的控制器操作中有一个动态对象参数,这样当一些序列化表单数据发布到它时,动态对象将自动绑定到发送给它的各种属性。
我已经查看了一堆问题,但大多数都是旧的,并表示需要自定义模型绑定器,但我想重申一点,没有自定义模型绑定器。我只是在我的帖子数据中包含一个formData,并使用动态formData参数捕获它。
那么ASP.NET在什么条件下认为这就是我想要的呢?
答案 0 :(得分:0)
public void Post(JObject dynamicJSON)
{
dynamic myObj = dynamicJSON;
int id = myObj.Id
}
JObject类是Newtonsoft.JSON库的一部分
答案 1 :(得分:0)
控制器
[HttpPost]
public ActionResult DoSomething(string a, string b, dynamic c)
{
return new EmptyResult();
}
然后做动态模型绑定器接口声明
public class DynamicJsonAttribute : CustomModelBinderAttribute
{
public override IModelBinder GetBinder()
{
return new DynamicJsonBinder(MatchName);
}
public bool MatchName { get; set; }
}
这是实现
using System;
using System.IO;
using System.Linq;
using System.Collections.Generic;
using System.Web.Helpers;
using System.Web.Mvc;
public class DynamicJsonBinder : IModelBinder
{
private readonly bool matchName;
public DynamicJsonBinder(bool matchName)
{
this.matchName = matchName;
}
public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
var contentType = controllerContext.HttpContext.Request.ContentType;
if (!contentType.StartsWith("application/json", StringComparison.OrdinalIgnoreCase))
return null;
string bodyText;
using (var stream = controllerContext.HttpContext.Request.InputStream)
{
stream.Seek(0, SeekOrigin.Begin);
using (var reader = new StreamReader(stream))
bodyText = reader.ReadToEnd();
}
if (string.IsNullOrEmpty(bodyText)) return null;
var desiralized = Json.Decode(bodyText);
if (!matchName) return desiralized;
var members = desiralized.GetDynamicMemberNames() as IEnumerable<string>;
return members == null
|| members.Contains(bindingContext.ModelName)
? desiralized[bindingContext.ModelName] : null;
}
}
你被黑了 - 快乐编码
无论如何我读了这个网址--- look it out
的帖子