MVC控制器返回值
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控制器返回值的更多相关文章
- mvc 各种返回值
一个例子胜过千言万语,直接上代码 SpringMVC的Controller控制器返回值详解 SpringMVC Controller 返回值几种类型 Spring MVC 更灵活的控制 json 返回 ...
- ASP.NET Core Mvc中空返回值的处理方式
原文地址:https://www.strathweb.com/2018/10/convert-null-valued-results-to-404-in-asp-net-core-mvc/ 作者: F ...
- MVC方法返回值数据
ModelAndView的作用以及用法 使用ModelAndView类用来存储处理完后的结果数据,以及显示该数据的视图.从名字上看ModelAndView中的Model代表模型,View代表视图,这个 ...
- Spring MVC controller返回值类型
SpringMVC controller返回值类型: 1 String return "user":将请求转发到user.jsp(forword) return "red ...
- ZendFramework-2.4 源代码 - 关于MVC - View层 - 控制器返回值
<?php class ReturnController extends AbstractActionController { public function returnAction() { ...
- Spring的MVC控制器返回ModelMap时,会跳转到什么页面?
控制器中的方法如下: @RequestMapping("/person/personDisplay") public ModelMap defaultHandler() { Sys ...
- spring mvc ajax返回值乱码
加入如下配置: <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHan ...
- MVC控制器返回一个list 视图接收
控制器 public ActionResult InfoFrame() { List<Users> list = new List<Users>(); if (Session[ ...
- MVC控制器返回重定向操作
注意:在使用Ajax请求后台时是不能在后台重定向的! 解决方案: if (userInfoService.CheckUser(username, psd, out msg)) { , msg = &q ...
随机推荐
- RAID级别简介
独立硬盘冗余阵列(RAID, Redundant Array of Independent Disks),旧称廉价磁盘冗余阵列(RAID, Redundant Array of Inexpensive ...
- ZOJ - 2243 - Binary Search Heap Construction
先上题目: Binary Search Heap Construction Time Limit: 5 Seconds Memory Limit: 32768 KB Read the sta ...
- Spring MVC-表单(Form)标签-文件上传(File Upload)示例(转载实践)
以下内容翻译自:https://www.tutorialspoint.com/springmvc/springmvc_upload.htm 说明:示例基于Spring MVC 4.1.6. 以下示例显 ...
- 通过JS的事件处理取得radio的值
转自:http://blog.sina.com.cn/s/blog_50a1e17401017pik.html 提前知识准备: 在一个HTML文档中,每个元素都可以设置ID和NAME属性. 其中ID属 ...
- 利用DTrace实时检测MySQl
与我们大多数人想象的不同,DTrace用于MySQL时不需对MySQL做任何更改.DTrace最强大的“提供器”(provider,是一组可观测的探测器)是FBT(Functional Boundar ...
- 豆瓣 jsonp 请求数据 并分页
豆瓣分页 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4 ...
- 1.7-BGP⑤
BGP Attributes/BGP属性 (通过BGP的属性,实现对BGP路由的选择/操纵) BGP Route Selection/BGP的选路原则: 1: The BGP forwarding t ...
- Eclipse集成Resinserver
因为Resin在Eclipse下的表现丝毫不亚于Tomcat,小编决定带领众小弟一起学习使用Resin.虽然小编身边也没有什么大牛在使用Resin,但看到Resin的广告已经吹到天边了.所以还 ...
- Mahout算法调用展示平台2.1
软件版本号: windows7: Tomcat7.JDK7.Spring4.0.2.Struts2.3.Hibernate4.3.myeclipse10.0.easyui:Linux(centos6. ...
- Hadop使用Partitioner后,结果还是一个文件,怎样解决??
近期看了一下partitioner.于是照着写了一个列子.最后发现程序并没有将结果分开写入对应的文件,结果还是一个文件,于是乎感觉是不是没实用集群去执行程序,发现control中还是本地执行的代码: ...