我正在创建应用程序的原型,其中尝试从C#MVC Controller发送请求标头和正文中的数据,还创建了Web api项目Post操作来处理请求。
我的代码是这样的::
要发布请求的MVC项目代码:
public class HomeController : Controller
{
public async Task<ActionResult> Index()
{
VM VM = new VM();
VM.Name = " TEST Name";
VM.Address = " TEST Address ";
using (var client = new HttpClient())
{
client.BaseAddress = new Uri("http://localhost:58297");
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
client.DefaultRequestHeaders.Add("username","test");
var json = JsonConvert.SerializeObject(VM);
var content = new StringContent(json, Encoding.UTF8, "application/json");
var result1 = await client.PostAsync("api/Values/Post", content);
}
return View();
}
}
我在WEB API项目中的代码:
// POST api/values
public IHttpActionResult Post([FromBody]API.VM vm)
{
try
{
HttpRequestMessage re = new HttpRequestMessage();
StreamWriter sw = new StreamWriter(@"E:\Apple\txt.log", false);
var headers = re.Headers;
string token = "";
if (headers.Contains("username"))
{
token = headers.GetValues("username").First();
}
sw.WriteLine("From header" + token);
sw.WriteLine("From BODY" + vm.Name);
sw.WriteLine("From BODY" + vm.Address);
sw.WriteLine("Line2");
sw.Close();
return Ok("Success");
}
catch (Exception ex)
{
return InternalServerError(ex);
}
}
我了解的是[FromBody] API.VM vm从Http请求主体获取数据,这意味着vm对象正在从HTTP Request主体获取数据。我能够获取请求主体。我不明白如何在MVC控制器的标头中传递数据(我想传递JSON数据)并在WEB Api post方法中检索数据?
我用过client.DefaultRequestHeaders.Add(“ username”,“ test”);在MVC项目中传递标头数据和
HttpRequestMessage re = new HttpRequestMessage();
var headers = re.Headers;
string token = "";
if (headers.Contains("username"))
{
token = headers.GetValues("username").First();
}
在WEB API项目中获取数据,但我无法获取用户名值。
答案 0 :(得分:0)
您可以使用该Web API方法内的下面几行来将所有标头传递给该Web API方法:
HttpActionContext actionContext = this.ActionContext;
var headers = actionContext.Request.Headers;
答案 1 :(得分:0)
为了通过headers
获取数据,您需要在项目中启用CORS:Install-Package Microsoft.AspNet.WebApi.Cors
,然后在Register
下的WebApiConfig.cs
方法中添加此代码行:EnableCors();
。
完成后,您可以按以下方式访问标头变量:
IEnumerable<string> values = new List<string>();
actionContext.Request.Headers.TryGetValues("username", out values);