我正在使用 ajax 请求在我的项目中获取 PartialViews 之一。我想通过 INotifier 传递一条消息。Cuttently 我正在使用 HttpStatusCodeResultreturn new HttpStatusCodeResult(204, "Message");
传递有关错误的信息,但不令人满意的解决方案。
$(this).load($(this).attr("href"), function (response, status, xhr) {
if (xhr.status == 204) {
// show message
}
});
我想知道这可以通过INotifier.Error()
在 ActionResult 中使用标准来实现。