我想做的是在xml中找到占位符并替换它们。 Jinja2在Python中做到了这一点,但我正在C#中寻找类似的东西。本质上,我想做的是:
<?xml version="1.0" encoding="utf-8"?>
<Data>
<Title>{{ myTitle }}</Title>
<Comp>
{% for item in compItems %} <CompItem>
<CompItemConfig>{{ item.config }}</CompItemConfig>
</CompItem>
</Comp>
{% endfor %}
</Data>
并以编程方式将其转换为:
<?xml version="1.0" encoding="utf-8"?>
<Data>
<Title>Brown Fox</Title>
<Comp>
<CompItem>
<CompItemConfig>QUICK</CompItemConfig>
</CompItem>
<CompItem>
<CompItemConfig>JUMPS</CompItemConfig>
</CompItem>
<CompItem>
<CompItemConfig>NOT LAZY</CompItemConfig>
</CompItem>
</Comp>
</Data>
作为引用,我认为应该如何工作的一个简单示例是:
Dictionary<string, string> myDictionary = new Dictionary<string, string>();
myDictionary.Add("myTitle", "Brown Fox");
myDictionary.Add("compItem", "QUICK");
myDictionary.Add("compItem", "JUMPS");
myDictionary.Add("compItem", "NOT LAZY");
FillTemplate("C:\myTemplate.xml", myDictionary);
根本没有任何帮助。谢谢!
最佳答案
我知道它已经很晚了,但是我真的很需要您在这里的要求,所以我使这个https://github.com/beto-rodriguez/Templator的标记有点不同,但是它应该可以正常工作,如果您熟悉angularJs的话,使用它不会有任何问题。
我之所以使用这种方法,是因为我需要与更多的用户共享模板,您可以生成一个模板并可以共享以打印标签(在我的情况下)
这是一个例子
C#
var compiler = new Compiler()
.AddKey("name", "Excel")
.AddKey("width", 100)
.AddKey("height", 500)
.AddKey("bounds", new[] {10, 0, 10, 0})
.AddKey("elements", new []
{
new { name = "John", age= 10 },
new { name = "Maria", age= 57 },
new { name = "Mark", age= 23 },
new { name = "Edit", age= 82 },
new { name = "Susan", age= 37 }
});
var compiled = compiler.CompileXml(@"C:\...\myXml.xml")
XLM来源
<document>
<name>my name is {{name}}</name>
<width>{{width}}</width>
<height>{{height}}</height>
<area>{{width*height}}</area>
<padding>
<bound sxRepeat="bound in bounds">{{bound}}</bound>
</padding>
<content>
<element sxRepeat="element in elements" sxIf="element.age > 25">
<name>{{element.name}}</name>
<age>{{element.age}}</age>
</element>
</content>
</document>
已编译
<document>
<name>my name is Excel</name>
<width>100</width>
<height>500</height>
<area>50000</area>
<padding>
<bound>10</bound>
<bound>0</bound>
<bound>10</bound>
<bound>0</bound>
</padding>
<content>
<element>
<name>Maria</name>
<age>57</age>
</element>
<element>
<name>Edit</name>
<age>82</age>
</element>
<element>
<name>Susan</name>
<age>37</age>
</element>
</content>
</document>
您也可以从Nuget安装它:
Install-Package SuperXml
关于c# - 以编程方式填充XML "Template"C#,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18710576/