10-1 슈퍼 심 플 뷰 엔진 sshtml 보기 엔진(낸 시 공식 문서 번역)

SSVE 라 고 부 르 는 Super Simple 보기 엔진 은 정규(정규 표현 식 을 사용 하여 교체)를 기반 으로 한 보기 엔진 으로 템 플 릿 작업 을 간소화 하 는 상황 을 지원 하기 때문에 다른 엔진 에 서 는 많은 특성 이 없 을 수 있 습 니 다.
Nuget 을 따로 사용 하지 않 아 도 됩 니 다.이 엔진 은 낸 시의 메 인 프로그램 집합 에 내장 되 어 있 으 며,사용 중 자동 으로 조립 되 어 직접 사용 할 수 있 습 니 다.이 엔진 은 처리 할 수 있다.  sshtmlhtml  or  htm
Models can either be standard types, or  ExpandoObjects  (or, in reality, any other object implementing  IDynamicMetaObjectProvider  that implements  IDictionary<string, object> to access its properties).
All commands have an optional semi-colon delimiter which can be used to remove ambiguity. Any  [.Parameters]  parameter can be multiple levels deep (e.g. This.Property.That.Property ).
As SSVE is a regular expression based view engine there is no “code execution”, so you cannot specify an arbitrary chunk of your own code to execute. The built in syntax/commands that you can use are as follows.
Please note that all quotes should be single-quotes in the expressions
  표준 변수 교체
Replaces with the string representation of the parameter, or the model itself if a parameter is not specified. If the substitution can not be performed, for instance if you specify an invalid model property, it will be substituted with  [Err!]
Syntax
@Model[.Parameters]

Example
Hello @Model.Name, your age is @Model.User.Age

I   교체 기
Enables you to iterate over models that are collection. Iterators cannot be nested
Syntax
@Each[.Parameters]
   [@Current[.Parameters]]
@EndEach
@Each  will implicitly be associated with the model and for each iteration the  @Current  will represent the current item in the collection.  @Current  can be used multiple times in the iterator block, and is accessed in the same way as  @Model .
Example
@Each.Users
   Hello @Current.Name!
@EndEach

  조건.
Parameters must be a boolean (see Implicit Conditionals below). Nesting of @If and @IfNot statements is not supported.
Syntax:
@If[Not].Parameters
   [contents]
@EndIf

Example
@IfNot.HasUsers
   No users found!
@EndIf

  내포 식 조건
If the model has property that implements  ICollection  then you can use an implicit conditional. The implicit conditional syntax is the same as a normal conditional, but the Parameters  part can have a  Has -prefix. The conditional will be true if the collection contains items, and false if it does not or if it is null.
Syntax
Has[CollectionPropertyName]

Example
@If.HasUsers
   Users found!
@EndIf

The above example will expand to "Users found!" if the model has a collection called Users  and it contains items; if the collection is empty then the text would not be displayed. 
    HTML 인 코딩
Both the  @Model  and  @Current keywords  (with or without parameters) can have an optional  !  operator, after the  @ , to HTML encode the output.
Syntax
@!Model[.Parameter]
@!Current[.Parameter]

Example
@!Model.Test

@Each
   @!Current.Test
@EndEach

  부분 페이지
Renders a partial view. A property of the current model can be specified to be used as the partial view's model, or it may be omitted to use the current view's model instead. The file extension of the view is optional.
Syntax
@Partial['<view name>'[, Model.Property]]

Example
// Renders the partial view with the same model as the parent
@Partial['subview.sshtml'];

// Renders the partial view using the User as the model
@Partial['subview.sshtml', Model.User];

  홈 페이지 와 세 션
You can put shared layout in a master page and declare content sections that will be populated by the views. It is possible to have nested master pages and you are not obligated to provide content for all of the content sections.
The master pages will have access to the  @Model  of the view and the file extension is optional when specifying the name of the master to use in your view.
You can use the  @Section  tag multiple times and is used to both declare a content section, in a master page, and to define the content blocks of a view.
Syntax
@Master['<name>']

@Section['<name>']
@EndSection

Example
// master.sshtml
<html>
<body>
@Section['Content'];
</body>
</html>

// index.sshtml
@Master['master.sshtml']

@Section['Content']
   This is content on the index page
@EndSection

    위조 방지 영패
Renders an anti-forgery token, on the page, in an hidden input to prevent cross-site request forgery attacks. The token will automatically be validated when a new request is posted to the server (assuming CSRF protection hasn’t been turned off).
Syntax
@AntiForgeryToken

Example
@AntiForgeryToken

  경로 확장
Expands a relative paths to a fully qualified URL.
Syntax
@Path['<relative-path>']

Example
@Path['~/relative/url/image.png']

Starting from v1.2, SSVE performs automatic path expansion in all HTML attributes (more specifically, in all  name="value"  pairs, both with single and double quotes around value ) where attribute value starts with  ~/ . For example,  <a href="@Path['~/relative/path']" ...>  can be significantly shortened to  <a href="~/relative/path" ...> .
 확장 SSVE
It is possible to extend the SSVE to support additional 'matchers' to meet your needs.This stackoverflow post gives an example of how to do this by describing how you could extend the SSVE to support text translation substitutions similar to the "@Text.TranslationKey" token support of the Razor View Engine.

좋은 웹페이지 즐겨찾기