• MVC使用基础——前后端交换数据


    1 获取参数

    Request.Form:获取以POST方式提交的数据(接收Form提交来的数据);   var data = Request.Form["data"];

    Request.QueryString:获取地址栏参数(以GET方式提交的数据)         var data = Request.QueryString["data"];

    2 页面跳转

    public actionResult Index

    {
    return viewn()  --返回默认视图Index.cshtml
    return View("PayList")  --从Index控制器调用PayList.cshtml  注:此处仅仅是调用视图,并未经过PayList控制器,如果控制器中有逻辑代码则就调用不到了
    return Redirct("Pay/PayList"); --只能通过url路径跳转(无重载)
    return RedirctToAction("PayList")  --从Index控制器调用PayList控制器,最后返回PayList.cshtml视图
    }
     
    public actionResult PayList
    {
    return View();  --返回默认视图PayList.cshtml视图
    }
     
    3 将后台数据上传到前端 之 使用   (ViewData与ViewBag)
     
    例如:

    public ActionResult Index()
    {
    List<string>colors = new List<string>();
    colors.Add("red");
    colors.Add("green");
    colors.Add("blue");
    ViewBag.ListColors = colors; //colors is List
    ViewBag.DateNow= DateTime.Now;
    ViewBag.Name= "hejingyuan";
    ViewBag.Age = 25;
    return View();
    }

    View


    <p>
    My name is <b>@ViewBag.Name</b>, <b>@ViewBag.Age</b> years old.
    <br />
    I like the following colors:
    </p>
    <ul id="colors">
    @foreach (var color in ViewBag.ListColors)
    {
    <li><font color="@color">@color</font> </li>
    }
    </ul>
    <p>
    @ViewBag.DateNow
    </p>


    4 base.TempData[""]   保存在session里面  所有的控制器都能使用    但是用过一次,就清空了

     
     
     
     
     
  • 相关阅读:
    Tomcat配置远程调试端口(windows、Linux)
    Tomcat安装、配置和部署
    通过java.net.URLConnection发送HTTP请求(原生、爬虫)
    URL编码表、Base64编码表、HTTP消息含义
    机器学习重要的方法
    学习编程的方法
    对vi/vim的一些看法
    gvim安装中文文档
    vi常用命令
    内存对齐
  • 原文地址:https://www.cnblogs.com/yyl001/p/10286095.html
Copyright © 2020-2023  润新知