我想要做的是在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);
任何帮助都会很棒。谢谢!
答案 0 :(得分:7)
我知道它已经很晚了,但我真的需要你在这里要求的东西,所以我做了这个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
答案 1 :(得分:4)
C#内置了用于XML序列化和反序列化的工具:https://msdn.microsoft.com/en-us/library/szzyf24s(v=vs.110).aspx
您只需声明:
[XmlType("Data")]
public class Data {
[XmlElement("Title")]
public string Title {get; set; }
[XmlArray("Comp")]
[XmlArrayItem("CompItem")]
public List<CompItem> Comp {get; set; }
}
和
[XmlType("Foo")]
public class CompItem {
[XmlElement("CompItemConfig")]
public string Config {get; set; }
}
然后你可以用简单的C#代码构造一个Data
- 对象。最后,您可以使用以下代码将其转换为XML文件:
Data data = new Data(...);//create Data object
System.Xml.Serialization.XmlSerializer xmls = new System.Xml.Serialization.XmlSerializer(typeof(Data));
System.IO.StreamWriter writer= new System.IO.StreamWriter(@"C:\myTemplate.xml");
writer.Serialize(file, data);
writer.Close();
可在此处找到更多信息:http://msdn.microsoft.com/en-us/library/vstudio/ms172873.aspx