MVC的传递数据的方法

1、使用ViewBag

 1         #region 0.2 Action方法 + ActionResult Index2()
 2         /// <summary>
 3         /// Action方法
 4         /// </summary>
 5         /// <returns></returns>
 6         public ActionResult Index2()
 7         {
 8             System.Text.StringBuilder sbhtml = new System.Text.StringBuilder();
 9             List<Models.dog> list = InitData();
10             list.ForEach(d =>
11             {
12                 sbhtml.AppendLine("<div>" + d.ToString() + "</div>");
13             });
14 
15             ViewBag.HtmlStr = sbhtml.ToString();
16 
17             return View();
18         } 
19         #endregion
View Code

 

Index2.cshtml

@{Layout = null;
}<!DOCTYPE html><html>
<head><meta name="viewport" content="width=device-width" /><title>Index</title>
</head>
<body>@Html.Raw(ViewBag.HtmlStr)</body>
</html>
View Code


2、使用ViewData

 1         #region 0.3 查询文章列表 + ActionResult Index3()
 2         /// <summary>
 3         /// 查询 文章 列表
 4         /// </summary>
 5         /// <returns></returns>
 6         OumindBlogEntities db = new OumindBlogEntities();
 7 
 8         public ActionResult Index3()
 9         {
10             List<Models.BlogArticle> list = (from d in db.BlogArticles where d.AIsDel == false select d).ToList();
11 
12             ViewData["DataList"] = list;
13             return View();
14         } 
15         #endregion
View Code

 

Index3.cshtml

@using MvcLewisTest.Models;
@{Layout = null;
}<!DOCTYPE html><html>
<head><meta name="viewport" content="width=device-width" /><title>Index</title><style type="text/css">#tbList{border:1px solid #0094ff;border-collapse:collapse;margin:10px auto;width:800px;}#tbList th,td{border:1px solid #0094ff;padding:10px;}</style><script type="text/javascript">function del(Aid) {if (confirm("确定要删除吗?"))window.location = "/Home/Del/" + Aid; }</script>
</head>
<body><table id="tbList"><tr>              <th>id</th><th>标题</th><th>分类</th><th>状态</th><th>时间</th><th>操作</th></tr>@foreach (BlogArticle a in ViewData["DataList"] as List<BlogArticle>) {<tr>              <td>@a.AId</td><td>@a.ATitle</td><td>@a.BlogArticleCate.Name</td><td>@a.Enumeration.e_cname</td><td>@a.AAddtime</td><td><a href="javascript:del(@a.AId)">删</a><a href="/Home/Modify/@a.AId">改</a></td></tr>}</table>
</body>
</html>
View Code


3、使用Control器的 return View()

 1         #region 0.5 显示要修改数据(根据Id) +  ActionResult Modify(int id)
 2         [HttpGet]
 3         /// <summary>
 4         /// 显示要修改的数据
 5         /// </summary>
 6         /// <param name="id"></param>
 7         /// <returns></returns>
 8         public ActionResult Modify(int id)
 9         {
10             //1.根据id查询出要修改的对象
11             BlogArticle art = (from a in db.BlogArticles where a.AId == id select a).FirstOrDefault();
12             //2.生产文章分类下来框
13             IEnumerable<SelectListItem> listItem = (from c in db.BlogArticleCates
14                                          where c.IsDel == false select c).ToList()
15                                          .Select(c => new SelectListItem { Value = c.Id.ToString(), Text = c.Name });
16             //3.将生成的文章分类 下拉框集合 设置给ViewBag
17             ViewBag.CateList = listItem;
18             //4.加载视图,使用View构造函数,将数据传给视图上Model属性
19             return View(art);
20         } 
21         #endregion
View Code

 

 

转载于:https://www.cnblogs.com/luyuwei/p/3358543.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/575741.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

java 找不到构造函数_JAVA找不到符号构造函数

JAVA找不到符号构造函数关注:52 答案:2 mip版解决时间 2021-02-05 09:13提问者彼岸独舞2021-02-05 00:06class Rect{private double length;private double width;public Rect(double length,double width){this.widthwidth;this.lengthlength;}public double getLength(){re…

SRF之数据访问

数据访问组件实现实体类和数据表映射、SQL语句配置执行、动态sql语句等功能&#xff0c;ORM方式能实现简单的对象和表的映射&#xff08;配置类似hibernate&#xff09;&#xff0c;但比较单一&#xff08;不支持一对多、多对多的情况&#xff09;&#xff0c;下边不做介绍&…

java 抽象类 方法_java 抽象类

Java为什么使用抽象类和接口Java接口和Java抽象类代表的就是抽象类型&#xff0c;就是我们需要提出的抽象层的具体表现。OOP面向对象的编程&#xff0c;如果要提高程序的复用率&#xff0c;增加程序的可维护性&#xff0c;可扩展性&#xff0c;就必须是面向接口的编程&#xff…

JQuery Show()的几种效果

1 show()方法和hide()方法 $("selector").show() 从display:none还原元素默认或已设置的display属性$("selector").hide() 设置元素的display样式为none&#xff0c;等于$("selector").css("display","none")&#xff…

java 创建servlet出错_java-创建applicationContext.xml时出错:在Servlet...

我正在尝试使用Spring和Hibernate配置Java MVC Web应用程序,但是当我运行服务器时出现此错误,并且我不知道这是什么问题.ERROR: org.springframework.web.context.ContextLoader - Context initialization failedorg.springframework.beans.factory.BeanCreationException: Err…

POJ 2054 Color a Tree

贪心。。。。 Color a TreeTime Limit: 1000MS Memory Limit: 30000KTotal Submissions: 6647 Accepted: 2249Description Bob is very interested in the data structure of a tree. A tree is a directed graph in which a special node is singled out, called the "ro…

php多进程并发,php多进程模拟并发事务

用实例代码给大家介绍关于php多进程模拟并发事务产生的一些问题&#xff0c;分享出来供大家参考学习&#xff0c;下面话不多说了&#xff0c;来一起看看详细的介绍吧数据表drop table if exists test;create table if not exists test (id int not null auto_increment ,count …

查看数据库中有哪些活动的事务,对应的会话id,执行的语句

select dbt.database_id,DB_NAME(dbt.database_id) 数据库名,dbt.transaction_id,at.name,at.transaction_begin_time,case at.transaction_type --事务类型 when 1 then 读/写事务 when 2 then 只读事务 when 3 then 系统事务 when 4 then 分布式事务 end trans…

php xml 空格,php闭合标签输出多余空行使xml页面显示错误的处理

在PHP官方文档中&#xff0c;曾经指出最好不要再结尾添加?>结束标记。但我们编程的习惯和使用的IDE都会为我们自动建立php结束标记?>。这个标记使用在正常情况下是不影响程序的运行的。尤其在早期的php4中&#xff0c;这种标记使用不当也不会影响最后的输出。但我最近遇…

Oil Deposits

hdu1241:http://acm.hdu.edu.cn/showproblem.php?pid1241 题意&#xff1a;就是找出有多少块有石油的区域&#xff0c;就是数组中的,这边相邻指的是是周围的八个位置。 题解&#xff1a; dfs&#xff0c;从一块油田的位子开始&#xff0c;朝着与他相邻的8个方向收索&#xff…

apache配置php版本,apache配置支持多版本php

首先在apache2配置目录中建立虚拟主机配置文件如下ServerName gzshes.localhostDocumentRoot "/var/www/gzshes"DirectoryIndex index.html index.phpOptions Indexes FollowSymLinks ExecCGIAllowOverride AllRequire all granted#下面为URL静态重写环境的配置&…

php批量采集电视剧,如何通过PHP多线程批量采集下载远程网站图片代码实例

/*** curl 多线程* author http://www.lai18.com* param array $array 并行网址* param int $timeout 超时时间* return mix*/public function Curl_http($array,$timeout15){$res array();$mh curl_multi_init();//创建多个curl语柄foreach($array as $k>$url){$conn[$k]…

php asp写法,asp/php常用的库连接文件代码写法大全

今天有位朋友问到了&#xff0c;关于conn.asp文件内容&#xff0c;这里我作统一整理说明。一直以来主要写asp与php&#xff0c;所以这里只作这两种写法总结&#xff0c;常用的各类库连接文件写法。ASP&#xff1a;by:zhoz http://log.zhoz.com/ASP来说&#xff0c;首先当然是SQ…

windows_study_2

描述&#xff1a;如何确定像%ProgramFiles%这样格式的目录的具体位置&#xff1f; 解决&#xff1a;运行——cmd——echo %ProgramFiles%——回车——界面就显示出目录位置了。转载于:https://www.cnblogs.com/lishidefengchen/p/3370150.html

php 控制器分组模式,控制器分组路由

控制器分组路由目的降低控制器复杂度我有个Volunteer(自愿者)控制器&#xff0c;下面有多个子模块&#xff0c;比如&#xff1a;job、question、resume、groupapp|--cli|--m|--web| |--controller| | |--Message.php| | |--Passport.php| | |--User.php| | |--Volunteer.php如果…

WCF部署到IIS不使用svc文件

<?xml version"1.0" encoding"utf-8"?><configuration> <system.web> <compilation debug"false" targetFramework"4.0" /> </system.web> <system.serviceModel> <behaviors> …

php订阅号借权,php订阅号借权

微信订阅号显示暂时无法提供服务该怎么用&#xff1f;方法:1.首先确定您的微信公众号使用的是开发者模式&#xff0c;接口设置正确&#xff0c;并能正常收发普通消息。2.下面说一下提示"该公众号暂时无法提供服务&#xff0c;请稍候再试"这条信息的原因大家先了解一下…

java.io.FileNotFoundException:/mnt/sdcard/......(Permission denied)

今天在实现下载模块的时候&#xff0c;从服务器下载apk安装的时候总是不成功。 打开LogCat查看日志&#xff0c;发现在访问sdcard的时候出现Permission denied的情况。 百度之后发现原因是没有添加权限。 解决办法是在Manifest文件里添加&#xff1a; “<uses-permission an…

php vendor路径,php – 如何使用composer获取根包路径

我正在使用composer开发一个名为php-app-config的PHP组件.这个组件,一旦被另一个项目需要,并使用composer install安装,应该在root package的config文件夹中查找配置文件,类似于root_package / config / config.yml../config/config.yml应仅存在于根包中,而不应存在于composer.…

POJ 2253 Frogger (求某两点之间所有路径中最大边的最小值)

题意&#xff1a;有两只青蛙&#xff0c;a在第一个石头&#xff0c;b在第二个石头&#xff0c;a要到b那里去&#xff0c;每种a到b的路径中都有最大边&#xff0c;求所有这些最大边的最小值。思路&#xff1a;将所有边长存起来&#xff0c;排好序后&#xff0c;二分枚举答案。 时…