博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MVC控制器返回重定向操作
阅读量:6280 次
发布时间:2019-06-22

本文共 921 字,大约阅读时间需要 3 分钟。

注意:在使用Ajax请求后台时是不能在后台重定向的!

解决方案:

  

if (userInfoService.CheckUser(username, psd, out msg))            {                return Json(new { res = 1, msg = "/UserInfo/Index" });            }            else {                return Json(new { res = 0, msg = msg });            }

 

前台接收后使用Window.location.href重定向

function (data) {            if (data.res == 1) {                window.location.href = data.msg;            } else {                $(".error_msg").html(data.msg);            }

以下是MVC提供重定向的方法

 

Return  Redirect();方法

public ActionResult DeleteUser(int id)        {            userInfoService.DeleteById(id);            return Redirect("/UserInfo/Index");        }

Response.Redirect();方法

public ActionResult Index()          {              ViewData["Message"] = "欢迎使用 ASP.NET MVC!";              Response.Redirect("User/News");              return View();          }

 

转载于:https://www.cnblogs.com/xiaoliwang/p/7689981.html

你可能感兴趣的文章
SpringBoot 整合Redis
查看>>
2014上半年大片早知道
查看>>
Android 6.0指纹识别App开发案例
查看>>
正文提取算法
查看>>
轻松学PHP
查看>>
Linux中的网络监控命令
查看>>
this的用法
查看>>
windows下安装redis
查看>>
CentOS7 yum 安装git
查看>>
启动日志中频繁出现以下信息
查看>>
httpd – 对Apache的DFOREGROUND感到困惑
查看>>
分布式锁的一点理解
查看>>
idea的maven项目,install下载重复下载本地库中已有的jar包,而且下载后jar包都是lastupdated问题...
查看>>
2019测试指南-web应用程序安全测试(二)指纹Web服务器
查看>>
树莓派3链接wifi
查看>>
js面向对象编程
查看>>
Ruby中类 模块 单例方法 总结
查看>>
jQuery的validate插件
查看>>
5-4 8 管道符 作业控制 shell变量 环境变量配置
查看>>
Enumberable
查看>>