2

我有一个控制台应用程序,我用它来调用我的 MVC WebApi 控制器的 CRUD 操作。

目前我的 HTTP 请求设置如下:

string _URL = "http://localhost:1035/api/values/getselectedperson";

var CreatePersonID = new PersonID
{
    PersonsID = ID
};

string convertedJSONPayload = JsonConvert.SerializeObject(CreatePersonID, new IsoDateTimeConverter());


var httpWebRequest = (HttpWebRequest)WebRequest.Create(_URL);
httpWebRequest.Headers.Add("Culture", "en-US");
httpWebRequest.ContentType = "application/json";
httpWebRequest.Accept = "application/json";
httpWebRequest.Method = "GET";

using (var streamWriter = new StreamWriter(httpWebRequest.GetRequestStream()))
{
    streamWriter.Write(convertedJSONPayload);
    streamWriter.Flush();
    streamWriter.Close();
}

return HandleResponse((HttpWebResponse)httpWebRequest.GetResponse());

如何将 JSON ID 参数添加到 URL 并由我的控制器“GetSelectPerson”接收?

public IPerson GetSelectedPerson(object id)
{
    ....... code
}
4

1 回答 1

3

你正在做一些非常矛盾的事情:

httpWebRequest.Method = "GET";

然后尝试将一些 JSON 有效负载写入请求正文。

GET 请求意味着您应该将所有内容作为查询字符串参数传递。根据定义,GET 请求没有正文。

像这样:

string _URL = "http://localhost:1035/api/values/getselectedperson?id=" + HttpUtility.UrlEncode(ID);

var httpWebRequest = (HttpWebRequest)WebRequest.Create(_URL);
httpWebRequest.Headers.Add("Culture", "en-US");
httpWebRequest.Accept = "application/json";
httpWebRequest.Method = "GET";

return HandleResponse((HttpWebResponse)httpWebRequest.GetResponse());

然后你的行动:

public IPerson GetSelectedPerson(string id)
{
    ....... code
}

现在,如果您想发送一些复杂的对象并使用 POST,那就完全不同了。

于 2013-11-07T15:57:05.740 回答