我正在寻找一个.net模板引擎 - 简单,轻量,稳定且没有太多依赖项。我目前所需要的只是创建模板化的纯文本和HTML电子邮件。任何人都可以给我一个很好的推荐吗?
如果它有帮助 - 比如Java的Freemarker或Velocity库。
[UPDATE] 感谢到目前为止的答案 - 非常感谢。当你使用这些库时,我真的很喜欢推荐或战争故事。似乎是不依次尝试每个人做出决定的最佳方式。
答案 0 :(得分:21)
答案 1 :(得分:6)
RazorEngine,一个基于微软Razor解析引擎构建的模板引擎。
https://github.com/Antaris/RazorEngine
没有使用它,但我发现它很有趣,因为如果你有一个ASP.NET MVC背景,你将不需要学习新东西。
答案 2 :(得分:5)
更多完整列表
答案 3 :(得分:5)
我会推荐CodeSmith Generator。它是一个基于模板的代码生成器,具有持续更新和活动社区。这是与CodeSmith Generator一起发布的list of templates。
答案 4 :(得分:3)
string template来自anltr.org人员C# version too。
答案 5 :(得分:2)
我刚刚发布了一个开源项目。它主要针对电子邮件模板,但如果您愿意,可以单独使用解析器。您可以阅读更多详细信息并从我的博客中获取源代码。
答案 6 :(得分:2)
我认为Mustache(http://mustache.github.com/)也可能适合该法案。
答案 7 :(得分:2)
以下使用Handlebars,RazorEngine和SharpTAL的一些测试:
namespace ConsoleApplication4
{
class Program
{
static void Main(string[] args)
{
Stopwatch sw = new Stopwatch();
//RAZOR
string razorTemplate = @"@model ConsoleApplication4.Test
<h1>@Model.Title</h1>
@if(Model.Condition1)
{
<span>condition1 is true</span>
}
<div>
@foreach(var movie in Model.Movies)
{<span>@movie</span>}
</div>";
//burning
Engine.Razor.RunCompile(razorTemplate, "templateKey", typeof(Test), new Test());
sw.Start();
var result1 = Engine.Razor.RunCompile(razorTemplate, "templateKey", typeof(Test), new Test());
sw.Stop();
Console.WriteLine("razor : "+sw.Elapsed);
//SHARPTAL
string sharpTalTemplate = @"<h1>${Title}</h1>
<span tal:condition=""Condition1"">condition1 is true</span>
<div tal:repeat='movie Movies'>${movie}</div>";
var test = new Test();
var globals = new Dictionary<string, object>
{
{ "Movies", new List<string> {test.Movies[0],test.Movies[1],test.Movies[2] } },
{ "Condition1", test.Condition1 },
{ "Title", test.Title },
};
var tt = new Template(sharpTalTemplate);
tt.Render(globals);
sw.Restart();
var tt2 = new Template(sharpTalTemplate);
var result2 = tt2.Render(globals);
sw.Stop();
Console.WriteLine("sharptal : " + sw.Elapsed);
//HANDLEBARS
string handleBarsTemplate = @"<h1>{{Title}}</h1>
{{#if Condition1}}
<span>condition1 is true</span>
{{/if}}
<div>
{{#each Movies}}
<span>{{this}}</span>
{{/each}}
</div>";
var tt3 = Handlebars.Compile(handleBarsTemplate);
sw.Restart();
var result3 = tt3(new Test());
sw.Stop();
Console.WriteLine("handlebars : " + sw.Elapsed);
Console.WriteLine("-----------------------------");
Console.WriteLine(result1);
Console.WriteLine(result2);
Console.WriteLine(result3);
Console.ReadLine();
}
}
public class Test
{
public bool Condition1 { get; set; }
public List<string> Movies { get; set; }
public string Title { get; set; }
public Test()
{
Condition1 = true;
Movies = new List<string>() { "Rocky", "The Fifth Element", "Intouchables" };
Title = "Hi stackoverflow! Below you can find good movie list! Have a good day.";
}
}
}
和结果:
答案 8 :(得分:1)
试试这个:电子邮件模板框架http://www.bitethebullet.co.uk/Email_Template_Framework.aspx
它在ASP.NET和WinForms下运行良好,并且仍在积极开发中。还有非常好的文档,易于挖掘示例。
答案 9 :(得分:1)
DotLiquid是非常好的.NET模板系统。
它源自Ruby的Liquid Markup,需要.NET Framework 3.5或更高版本。
答案 10 :(得分:1)
XCST (eXtensible C-Sharp Templates)
<ul>
<c:for-each name='n' in='System.Linq.Enumerable.Range(1, 5)' expand-text='yes'>
<li>{n}</li>
</c:for-each>
</ul>
答案 11 :(得分:0)
你见过NVelocity,一个Velocity的.NET端口吗? http://nvelocity.sourceforge.net/
答案 12 :(得分:0)
http://csharp-source.net/open-source/template-engines
http://joel.net/code/dotnet_templates.aspx
希望这有帮助!!!
答案 13 :(得分:0)
NVELOCITY虽然很旧,但在2003年的最后一次发布时已经足够了。
答案 14 :(得分:0)
SharpTAL - 处于活动开发状态且没有依赖关系的独立引擎,快速