ASP.NET MVC4 Razor
2014-09-18 14:06 by 易code, 2854 阅读, 0 评论, 收藏, 编辑
1 Code Expressions 代码表达式
@表达式 or @(Expressions )
例如1: <h1>Listing @stuff.Length items.</h1
Razor peeks at the next character and sees an angle bracket, which isn’t a valid identifier and transitions back into markup mode
例如2:
@{
string rootNamespace = "MyApp";
}
<span>@rootNamespace.Models</span>
What hope to output was :
<span>MyApp.Models</span>
必须这样写:<span>@(rootNamespace).Models</span> ,通过括号来标记语法结束。
example 3:
How to show an e-mail address:
<span>support@megacorp.com</span> Razor 语法能智能识别 一个 正确的e-mail 地址
但是像微博这种,@名字 ,则需要转义输出:
<p>
You should follow
@haacked, @jongalloway, @bradwilson, @odetocode
</p>
You can do so by using @@ sing ,just like that:
<p>
You should follow
@@haacked, @@jongalloway, @@bradwilson, @@odetocode
</p>
2 HTML Encoding
为了跨站点的脚本攻击,Razor 语法会直接将脚本代码编码输出。
@{
string message = "<script>alert('haacked!');</script>";
}
<span>@message</span>
输出:
<span><script>alert('haacked!');</script></span>
此条实际测试时(chrome版本 37.0.2062.120 m,IE11)均显示为: <span><script>alert('haacked!');</script></span>
如果需要原样输出 代码文本 需要使用 @Html.Raw():
@{
string message = "<strong>This is bold!</strong>";
}
<span>@Html.Raw(message)</span>
输出:
<span><strong>This is bold!</strong></span>
实际测试: 显示为:This is bold! 当作html标记执行了!!!
如果 message ="<script>alert('haacked!');</script>"; 那么
<span>@Html.Raw(message)</span> 会弹出一个 haacked! 对话框,执行js脚本!
可以在 Jquery 语法中使用 Razor语法:
<script type="text/javascript">
$(function () {
var message = 'Hello @ViewBag.Title';
$("#message").html(message).show('slow');
});
</script>
结果: Hello My Sample title
可以使用 @Ajax.JavaScriptStringEncode(string value) 对 字符内容进行编码
3 Code Block 代码块
@{ } 代码块
例如:
@{
string s = "One line of code.";
ViewBag.Title "Another line of code";
}
@foreach(){} , @while() {} ;@for(){} 循环代码块
@if(){} ; 条件块
@* *@ 注释块
例如:
@foreach (Mvc4App.Models.LoginModel login in ViewBag.LoginModels)
{
UserName:<li>@login.UserName</li>
}
4 Layouts
用来呈现布局设计。@RenderBody()
例如: 主布局:SiteLayout.cshtml 文件
<!DOCTYPE html> |
使用布局文件 index.cshtml
@{
Layout = "~/Views/Shared/SiteLayout.cshtml";
View.Title = "The Index!";
}
<p>This is the main content!</p>
---------------------------------------------
呈现 布局段 @RenderSection()
<!DOCTYPE html>
<html>
<head><title>@ViewBag.Title</title></head>
<body>
<h1>@ViewBag.Title</h1>
<div id="main-content">@RenderBody()</div>
<footer>@RenderSection("Footer")</footer>
</body>
</html>
更新index.cshtml
@{
Layout = "~/Views/Shared/SiteLayout.cshtml";
View.Title = "The Index!";
}
<p>This is the main content!</p>
@section Footer {
This is the <strong>footer</strong>.
}
-------------------------------------------------------
如果有些需要呈现,有些不需要,可以使用RenderSection 的重载方法:
<footer>@RenderSection("Footer", required: false)</footer>
还可以判断段是否存在
<footer>
@if (IsSectionDefined("Footer")) {
RenderSection("Footer");
}
else {
<span>This is the default footer.</span>
}
</footer>
------------------------------------------------------------
5 分布视图 partial view
在HomeControl 中添加Action
public ActionResult Partial()
{
ViewBag.Part = "this is partial view";
return PartialView();
}
右键添加视图partial.cshtml,分布视图不能使用Layout 属性。
<div>
<p>Hello @ViewBag.Part</p>
</div>
分布视图与一般视图可以一样的方式浏览 http://localhost:46918/home/partial
分布视图可以同Ajax 配合,直接加载:
<input type="button" value="click me to load partial view" onclick="loadPartil()" />
<div id="result"></div>
<script type="text/javascript">
function loadPartil() {
$('#result').load('/home/partial');
}
</script>
ASP.NET MVC4 Razor的更多相关文章
- ASP.NET MVC4(Razor)从客户端中检测到有潜在危险的 Request.Form 值
SP.NET MVC4(Razor)从客户端中检测到有潜在危险的 Request.Form 值 “/”应用程序中的服务器错误. 从客户端(Content=" sdfdddd ..." ...
- 21、ASP.NET MVC入门到精通——ASP.NET MVC4优化
本系列目录:ASP.NET MVC4入门到精通系列目录汇总 删除无用的视图引擎 默认情况下,ASP.NET MVCE同时支持WebForm和Razor引擎,而我们通常在同一个项目中只用到了一种视图引擎 ...
- Asp.Net MVC4 + Oracle + EasyUI 学习 第二章
Asp.Net MVC4 + Oracle + EasyUI 第二章 --使用Ajax提升网站性能 本文链接:http://www.cnblogs.com/likeli/p/4236723.html ...
- Asp.Net MVC4 + Oracle + EasyUI 学习 第一章
Asp.Net MVC4 + Oracle + EasyUI 第一章 --操作数据和验证 本文链接:http://www.cnblogs.com/likeli/p/4234238.html 文章集合 ...
- Asp.Net MVC4 + Oracle + EasyUI 学习 序章
Asp.Net MVC4 + Oracle + EasyUI 序章 -- 新建微软实例 本文链接:http://www.cnblogs.com/likeli/p/4233387.html 1. 简 ...
- asp.net mvc4 学习笔记一(基本原理)
做了8年的asp.net webform,用过MVVM但还没用过MVC , 虽然项目不用MVC,但是还是想了解一下,今天第二天学习,以下是学习心得. VS2012默认带有asp.net mvc3和as ...
- 利用CSS预处理技术实现项目换肤功能(less css + asp.net mvc4.0 bundle)
一.背景 在越来越重视用户体验的今天,换肤功能也慢慢被重视起来.一个web系统用户可以选择一个自己喜欢的系统主题,在用户眼里还是会多少加点分的.我们很开心的是easyui v1.3.4有自带defau ...
- Asp.Net MVC4入门指南(1): 入门介绍
前言 本教程将为您讲解使用微软的Visual Studio Express 2012或Visual Web Developer 2010 Express Service Pack 1 来建立一个ASP ...
- ASP.NET MVC4 部分视图
ASP.NET MVC4 部分视图 2014-10-24 16:48 by 易code, 2662 阅读, 1 评论, 收藏, 编辑 [部分视图] ASP.NET MVC 里的部分视图,相当于 Web ...
随机推荐
- Ruby基础教程
一.Ruby基础知识 1.关于Ruby Ruby是脚本语言 Ruby是面向对象语言 Ruby是跨平台语言 Ruby是开放源码软件 2.Ruby入门书籍推荐 <Ruby.Programming向R ...
- Python3基础 random 配合while输出10个随机整数
Python : 3.7.0 OS : Ubuntu 18.04.1 LTS IDE : PyCharm 2018.2.4 Conda ...
- bootstrap6 关于bs的使用总结
在同一行中也可以有多个过了行的 "行", 即列的"总宽度"超宽度12. 即实现堆叠display:block和水平排列float的自动控制, 在div的clas ...
- 项目梳理4——WebApi项目,使用注释填充Description字段
web.config中添加连接字符串: 为webapi添加Description,使用注释来填充此字段 对于所有引用的xxxx.base项目设置生成的xml文档,注意release.debug下都需设 ...
- MVC ---- 标准查询运算符
标准查询运算符:定义在System.Linq.Enumerable类中的50多个为IEnumerable<T>准备的扩展方法,这些方法用来 对它操作的集合进行查询筛选. 筛选集合Where ...
- CKEditor5 基本使用
1.引入 <script type="text/javascript" src="/plugin/ckeditor5/ckeditor.js">&l ...
- [JSBSim]基于winsocket2的TCP\UDP使用例子
TCP部分: 参考:http://blog.csdn.net/sbfksmq/article/details/50808863 另附:linux下的tcp/udp参考:https://www.cnbl ...
- C++指针详解(转)
指针的概念 指针是一个特殊的变量,它里面存储的数值被解释成为内存里的一个地址.要搞清一个指针需要搞清指针的四方面的内容:指针的类型,指针所指向的类型,指针的值或者叫指针所指向的内存区,还有指针本身所占 ...
- js、jq对象互转
1.js对象转jq对象: $() $('#kw') $(document.getElementById("kw")) 2.jq对象转js对象: $(this).get(0) ...
- Spring AMQP 源码分析 03 - MessageConverter
### 准备 ## 目标 了解 Spring AMQP 消息转化实现 ## 相关资源 Quick Tour for the impatient:<http://docs.spring.io/ ...