我在自定义模块中有一个简单的JSON
public JsonResult GetStatus()
{
return Json(new { Status = "Success" }, JsonRequestBehavior.AllowGet);
}
使用按钮单击我应该使用AJAX调用此JSON
function GetStatus() {
$.ajax({
type: 'GET',
url: '/OrchardLocal/Info/GetStatus',
dataType: "json",
contentType: "application/json; charset=utf-8",
async: "true",
cache: "true",
success: function (response) {
}
});
}
但Orchard提示我一个错误,说它是一个无效的控制器
我该如何解决这个问题?
由于