public ActionResult Index(string id)//主页 //参数string searchString 访问方式为index?searchString=xxxx 。参数string id 访问方式为index/x
{
string searchString = id;
//return View(db.Books.ToList()); //返回一个对象集合
var s = from m in db.Books select m; //查询所有数据
if (!string.IsNullOrEmpty(searchString)) //判断传来的数据是否位空
{
s = s.Where(x => x.BookName.Contains(searchString)); //模糊查询数据
}
return View(s);
}
public ActionResult Edit(int? id) //只能接受整型数据;其他默认null
{
if (id == null)
{
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);//传递过去400 //返回400页面
}
Book book = db.Books.Find(id); //在books表中查找指定id的对象 赋值给Book对象
if (book == null)
{
return HttpNotFound(); //未找到调用HttpNotFound()方法,传递 NotFound = 404,返回404 页面
}
return View(book); //返回这个对象
}
        [HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Edit([Bind(Include = "BookID,BookName,Author,Price,dt")] Book book) //编辑
{
if (ModelState.IsValid)
{
db.Entry(book).State = EntityState.Modified;
db.SaveChanges();
return RedirectToAction("Index");
}
return View(book);
}
[HttpPost, ActionName("Delete")] //重命名方法名 只接受post请求
[ValidateAntiForgeryToken]
public ActionResult DeleteConfirmed(int id) //删除
{
Book book = db.Books.Find(id); //根据指定ID查找
db.Books.Remove(book); //移除对象
db.SaveChanges(); //保存修改
return RedirectToAction("Index"); //返回主页
}
   public class HomeController : Controller
{
// GET: Home
public ActionResult Index()
{
return View();// 参数可以返回model对象
}
//返回ViewResult视图结果,将视图呈现给网页
public ActionResult A1()
{
return View();// 参数可以返回model对象
}
//返回PartialViewResult部分视图结果,主要用于返回部分视图内容
public ActionResult A2()
{
return PartialView("ViewUserControl");//在View/Shared目录下创建ViewUserControl.cshtml部分视图
}
//返回ContentResult用户定义的内容类型
public ActionResult A3()
{
return Content("指定文本", "text/html"); // 可以指定文本类型
}
//返回JsonResult序列化的Json对象
public ActionResult A4()
{
//Dictionary<string, object> dic = new Dictionary<string, object>();
//dic.Add("id", 100);
//dic.Add("name", "hello");
List < string> list= new List<string>();
list.Add("xxxx");
list.Add("YYYY");
list.Add("ZZZZ");
//["xxxx","YYYY","ZZZZ"]
return Json(list, JsonRequestBehavior.AllowGet);//若要使用GET请求设置参数为AllowGet
//{"id":100,"name":"hello"}
}
//返回JavaScriptResult可在客户端执行的脚本
public ActionResult A5()
{
string str = string.Format("alter('{0}');", "弹出窗口");
return JavaScript(str);
}
//返回FileResult要写入响应中的二进制输出,一般可以用作要简单下载的功能
public ActionResult A6()
{
string fileName = "~/Content/test.zip"; // 文件名
string downFileName = "文件显示名称.zip"; // 要在下载框显示的文件名
return File(fileName, "application/octet-stream", downFileName);
}
// 返回Null或者Void数据类型的EmptyResult
public ActionResult A7()
{
return null;
} //重定向方法:Redirect / RedirectToAction / RedirectToRoute
//Redirect:直接转到指定的url地址
public ActionResult Redirect()
{
// 直接返回指定的url地址
return Redirect("http://www.baidu.com");
}
// RedirectToAction:直接使用 Action Name 进行跳转,也可以加上ControllerName;也可以带参数
public ActionResult RedirectResult()
{
return RedirectToAction("Index", "Home", new { id = "", name = "liu" });
}
//RedirectToRoute:指定路由进行跳转 //Default为global.asax.cs中定义的路由名称
public ActionResult RedirectRouteResult()
{
return RedirectToRoute("Default", new { controller = "Home", action = "Index" });
}
}

MVC控制器返回值的更多相关文章

  1. mvc 各种返回值

    一个例子胜过千言万语,直接上代码 SpringMVC的Controller控制器返回值详解 SpringMVC Controller 返回值几种类型 Spring MVC 更灵活的控制 json 返回 ...

  2. ASP.NET Core Mvc中空返回值的处理方式

    原文地址:https://www.strathweb.com/2018/10/convert-null-valued-results-to-404-in-asp-net-core-mvc/ 作者: F ...

  3. MVC方法返回值数据

    ModelAndView的作用以及用法 使用ModelAndView类用来存储处理完后的结果数据,以及显示该数据的视图.从名字上看ModelAndView中的Model代表模型,View代表视图,这个 ...

  4. Spring MVC controller返回值类型

    SpringMVC controller返回值类型: 1 String return "user":将请求转发到user.jsp(forword) return "red ...

  5. ZendFramework-2.4 源代码 - 关于MVC - View层 - 控制器返回值

    <?php class ReturnController extends AbstractActionController { public function returnAction() { ...

  6. Spring的MVC控制器返回ModelMap时,会跳转到什么页面?

    控制器中的方法如下: @RequestMapping("/person/personDisplay") public ModelMap defaultHandler() { Sys ...

  7. spring mvc ajax返回值乱码

    加入如下配置: <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHan ...

  8. MVC控制器返回一个list 视图接收

    控制器 public ActionResult InfoFrame() { List<Users> list = new List<Users>(); if (Session[ ...

  9. MVC控制器返回重定向操作

    注意:在使用Ajax请求后台时是不能在后台重定向的! 解决方案: if (userInfoService.CheckUser(username, psd, out msg)) { , msg = &q ...

随机推荐

  1. Linux下几种文件传输命令

    Linux下几种文件传输命令 sz rz sftp scp 最近在部署系统时接触了一些文件传输命令,分别做一下简单记录: 1.sftp Secure Ftp 是一个基于SSH安全协议的文件传输管理工具 ...

  2. hdu 3064

    1:前n项和公式:1+2+3+...+n = n*(n+1)/2 2:前n项平方和公式:1^2+2^2+.........+n^2=n*(n+1)*(2n+1)/6 #include<stdio ...

  3. Void 参数

    在C程序中如果在声明函数的时候如果没有任何参数那么需要将参数定义为void以此来限定此函数不可传递任何参数,如果不进行限定让参数表默认为空其意义是可以传递任何参数,这个问题的由来实际上是由于要兼容早期 ...

  4. linux下环境变量C_INCLUDE_PATH

    环境变量定义一般都是/etc/profile文件(对所有用户有效),或者在Home目录下的.bashrc或.profile(只对当前用户有效)一般系统安装了编译工具之后无需设置这些变量编译都不会出现问 ...

  5. POJ2584_T-Shirt Gumbo(二分图多重最大匹配/最大流)

    解题报告 http://blog.csdn.net/juncoder/article/details/38239367 题目传送门 题意: X个參赛选手,每一个选手有衣服大小的范围,5种大小的队服,求 ...

  6. JAVA正則表達式小总结

    近期项目中正在做后台校验,而后台校验也基本都是使用正則表達式校验.本文做一些粗略的总结. 1.字符串长度:.{1,10},注意有一个点在{}前,表示匹配全部.'{}'之前一定是一个捕获组,因此假设有其 ...

  7. 【Android】开发优化之——调优工具:TrackView,Method Profiling

    Android SDK自带的tool TrackView 位于 sdk的tools文件夹下.使用方法为:进入到tools下,执行 traceview e:\loginActivityTracing.t ...

  8. @RestController注解的使用

    示例代码:/*@ResponseBody@Controller*/@RestControllerpublic class HelloController { @RequestMapping(" ...

  9. bazel编译tensorflow 生成libtensorflow_inference.so 和 libandroid_tensorflow_inference_java.jar

    bazel build -c opt //tensorflow/contrib/android:libtensorflow_inference.so --crosstool_top=//externa ...

  10. poj--1274--The Perfect Stall(匈牙利裸题)

    The Perfect Stall Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 21868   Accepted: 980 ...