作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
将自定义 HTML 代码片段插入 MVC View 时,文字替换的编辑在我开始键入值时结束。
我错过了什么吗?
我的文字两次用于替换属性名称:
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippet Format="1.0.0" xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<Header>
<Title>MVC Field Pair</Title>
<Shortcut>mvcfieldpair</Shortcut>
<Description>Inserts an MVC label/input pair</Description>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Declarations>
<Literal Editable="true">
<ID>property</ID>
<ToolTip>Model property</ToolTip>
<Default>myProperty</Default>
</Literal>
</Declarations>
<Code Language="html">
<![CDATA[
<li>
<%= Html.LabelFor(m => m$property$) %>
<%= Html.TextBoxFor(m => m$property$) %>
</li>
$end$]]>
</Code>
</Snippet>
</CodeSnippet>
最佳答案
相对于 <![CDATA[
的位置和 ]]>
很重要。我调整了我的片段:
<CodeSnippet Format="1.1.0" xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<Header>
<Title>MVC Field Pair</Title>
<Shortcut>mvcfieldpair</Shortcut>
<Description>Inserts an MVC label/input pair</Description>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Declarations>
<Literal>
<ID>property</ID>
<ToolTip>Model property</ToolTip>
<Default>myProperty</Default>
</Literal>
</Declarations>
<Code Language="html"><![CDATA[<li>
<%= Html.LabelFor(m => m$property$) %>
<%= Html.TextBoxFor(m => m$property$) %>
</li>$end$]]></Code>
</Snippet>
</CodeSnippet>
关于visual-studio-2010 - Visual Studio Code Snippet 文字替换过早结束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10440967/
我的测试代码: int SIZE = 1900; int[][] array = new int[SIZE][]; for (int i = 0; i < SIZE; i++) { array[i
我有一堆 WAV 文件和一个将它们复制到另一个目录的脚本,但使用 SoX 处理了一些文件。输出的文件都应该有 1 个 channel ,采样率不超过 44.1khz。我的大多数文件要么有一个以上的 c
我正在运行一个相当占用内存的 Python 脚本,但似乎我的机器正在提前终止进程。我安装了 16GB(并通过 lshw -class memory 确认),但我的进程似乎在使用量达到 4GB 左右时被
我很难确定在使用 .NET 的 HttpWebRequest 类调用远程服务器(特别是 REST Web 服务)时是否有办法处理潜在的连接问题。根据我的调查,WebClient 类的行为是相同的,这在
所以我有这个网址: http://test.com/afolder/who-else-wants-to-make-horror-movies%3f/ 这是 URL 编码版本: http://test.
我是一名优秀的程序员,十分优秀!