zoukankan      html  css  js  c++  java
  • Razor字符串处理

    需要注意的是低版本是不支持C# 6语法中的string interpolation的

      <label>
                                @if (!string.IsNullOrEmpty(Model.BudgetValueUpdatedBy))
                                {
                                    @(Model.BudgetValueUpdatedBy + " " + Model.BudgetValueUpdatedOn)
                                }
                                else
                                {
                                    @("Chuck hello")
                                }
                            </label>
                            <label>Chuck Test</label>

    String interpolation in a Razor view?

    update:

    Starting in Visual Studio 2015 Update 1, there is a simple process in the GUI to do the steps below for you. Simply right-click your web project and select "Enable C# 6 / VB 14". More information is available on the MSDN blog post, "New feature to enable C# 6 / VB 14".

    Since this answer was written, this functionality has been added with the assistance of a NuGet package.

    Add this Nuget package to your solution if you are using MVC5.

    https://www.nuget.org/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform/

    The nuget package should modify your web.config, but check that the following configuration is in your web.config file (and if it isn't add it in):

      <system.codedom>
        <compilers>
          <compiler language="c#;cs;csharp" extension=".cs"
            type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
            warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701"/>
          <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb"
            type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
            warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE=&quot;Web&quot; /optionInfer+"/>
        </compilers>
      </system.codedom>

    In MVC6, this is built-in.


    Original answer:

    <div>
        @($"Hello {this.Model.SomeProperty}")
    </div>

    This only works in C# 6 with MVC6. Even if you are running MVC5 with the C# 6 compiler, it won't work.

    The trick is that the razor parser is not smart enough to recognize some syntaxes yet, so you must wrap the whole thing in parentheses (you must do this when using the null-conditional operator (?.) in your razor views as well).

    That said, string interpolation in Razor is a bit buggy at the moment in MVC6, so I wouldn't be surprised if there were some issues with it. whether or not they will be addressed is another matter.

    旧版本不支持,可以考虑使用codedom来支持。

  • 相关阅读:
    『C#基础』数据库死锁笔记
    『C#基础』IIS的权限问题
    『C#基础』调用CMD的一个小工具
    『C#基础』获取系统图标的一个操作类
    『程序人生』其实,做软件与打游戏是一样一样的……
    『C#基础』C#调用存储过程
    『Linux』Arch Linux与VirtualBox的结合
    sql server 触发器简单学习
    用触发器替换原来的insert
    食物增肥一方
  • 原文地址:https://www.cnblogs.com/chucklu/p/11400231.html
Copyright © 2011-2022 走看看