核心问题:GET有效,POST没有。我是WebAPI的新手,所以我可能做了一些愚蠢的事情,但是我在网上试图弄清楚为什么这不起作用。
相当简单的WebAPI C#app。我试图将其归结为非常简单的路线:
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
// Add a route where action is supplied, i.e. api/csv/LoadToSQL
config.Routes.MapHttpRoute(
name: "ActionApi",
routeTemplate: "api/{controller}/{action}"
);
控制器类:
public class CsvController : ApiController
{
// GET api/csv
public IEnumerable<string> Get()
{
return new string[] { "value1", "value2" };
}
// GET api/csv/name
public string Get(string csvName)
{
return "value";
}
// POST - api/csv/LoadToSQL
// Load a CSV to SQL
[HttpPost]
[ActionName("LoadToSQL")]
public HttpResponseMessage LoadToSQL(
string storageAccount,
string accessKey,
string containerName,
string csvFileName,
string connectionString,
string targetDatabaseName,
string targetTableName)
{
try
{
// Retrieve storage account from connection string.
CloudStorageAccount blobStorage = CloudStorageAccount.Parse(storageAccount);
在本地启动并连接Fiddler。试试GET;工作原理:
尝试POST - 失败:
我原来的实现只是
// POST - api/csv
// Load a CSV to SQL
public HttpResponseMessage Post(
但是没有用,所以我开始尝试添加特定的路线和动词装饰。
无论我做什么,似乎都没有看到针对此控制器的POST操作。
有什么想法吗?
更新 - 以下每个答案,正确的工作路线是:
// Add a route where action is supplied, i.e. api/csv/LoadToSQL
config.Routes.MapHttpRoute(
name: "ActionApi",
routeTemplate: "api/{controller}/{action}/{storageAccount}/{accessKey}/{containerName}/{csvFileName}/{connectionString}/{targetDatabaseName}/{targetTableName}"
);
这显示了POST请求的所有参数。
答案 0 :(得分:2)
如果您愿意,可以将您的方法替换为更加清晰和干净
1-使用您的选项声明一个课程
public class LoadToSqlData
{
public string storageAccount {get; set;}
public string accessKey {get; set;}
public string containerName {get; set;}
public string csvFileName {get; set;}
public string connectionString {get; set;}
public string targetDatabaseName {get; set;}
public string targetTableName {get; set;}
}
2-声明你的方法:
[HttpPost]
[ActionName("ActionApi")]
[Route("api/Csv/LoadToSQL")]
public HttpResponseMessage LoadToSQL([FromBody]LoadToSqlData data)
请注意[Route],[ActionName]
和[FromBody]
属性的使用情况。
希望有所帮助。