从 asp.net mvc 中的 jsonresult 返回的 json
我从控制器的 json 结果返回这个,
var genericResult = new { redirectUrl = Url.Action("Create", "Registration")
, isRedirect = true };
return Json(genericResult);
但是当我通过 firebug 检查时,
{"redirectUrl":"/","isRedirect":true}
if (data.isRedirect) {
window.location.href = json.redirectUrl;
}
任何建议....如何重定向?
I am returning this from a json result from a controller,
var genericResult = new { redirectUrl = Url.Action("Create", "Registration")
, isRedirect = true };
return Json(genericResult);
but when i inspect through firebug,
{"redirectUrl":"/","isRedirect":true}
if (data.isRedirect) {
window.location.href = json.redirectUrl;
}
Any suggestion.... How to redirect?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据声明方式,将
data
修复为json
,或将json
修复为data
。Depending on how it's been declared, either fix
data
tojson
, or fixjson
todata
.