当我尝试在DNN中执行服务的WebAPI方法时,我对GET请求没有任何问题。但是,我不能在我的生活中获得POST请求以返回除HTTP 404 Not Found错误之外的任何内容。 GET和POST方法都在同一个控制器中。
我查看了类似的问题,并确认我的文件夹名称是标准的,IIS没有运行应用程序文件夹,而且我没有额外的web.config。
我还安装了dnnGlimpse并验证我的路线已注册。
这是DNN 7.3.4和一个干净的项目 - 它不是来自VS模板。
这是我的路线映射器的一个例子。
public class RouteMapper : IServiceRouteMapper
{
public void RegisterRoutes(IMapRoute mapRouteManager)
{
mapRouteManager.MapHttpRoute("MyModule", "default", "{controller}/{action}", new[] { "MyCompany.Modules.MyModule.Controllers" });
}
}
这是我的post方法的一个例子。在这种方法中,我甚至无法在任何地方遇到断点。此类位于名为" Controllers。"
的文件夹中namespace MyCompany.Modules.MyModule.Controllers
{
public class ExampleController : DnnApiController
{
[AllowAnonymous]
[ValidateAntiForgeryToken]
[HttpPost]
public HttpResponseMessage CustomObjectType(string value)
{
try
{
var oType = CustomObjectTypeHelper.GetObjectType(value);
switch (oType)
{
case CustomObjectType.Type1:
return Request.CreateResponse(HttpStatusCode.OK, "type1");
case CustomObjectType.Type2:
return Request.CreateResponse(HttpStatusCode.OK, "type2");
case CustomObjectType.Type3:
return Request.CreateResponse(HttpStatusCode.OK, "type3");
case CustomObjectType.Type4:
return Request.CreateResponse(HttpStatusCode.OK, "type4");
default:
throw new ArgumentOutOfRangeException("value", "Value format does not match a supported custom object type.");
}
}
catch(Exception ex)
{
Exceptions.LogException(ex);
return Request.CreateErrorResponse(HttpStatusCode.InternalServerError,
"Card number format does not match a supported card type.");
}
}
}
}
以下是我如何调用它的示例。
var sf = $.ServicesFramework(<%=ModuleId %>);
var serviceUrl = sf.getServiceRoot('MyModule');
function getObjectType() {
var strNumber = $('<%=txtNumber.ClientID %>').val();
try
{
$.ajax({
type: "POST",
cache: false,
url: serviceUrl + "Example/CustomObjectType",
beforeSend: sf.setModuleHeaders,
data: strNumber
}).success(function(data, textStatus, jqXHR) {
alert(data);
}).fail(function (xhr, result, status) {
alert("Uh-oh, something broke: " + status);
});
} catch (e) {
//Shouldn't do this but it's just for testing
alert(e.stack);
}
}
答案 0 :(得分:2)
实际上,这最终成为WebAPI不喜欢在POST中使用简单值的问题。一旦我将其更改为期望视图模型,就会找到该方法。
答案在下面的问题中: