我创建了一个带有两个嵌套 for 循环的dotLiquid模板
{% for item in page.Fields %}
<li>
{{ item.Name }}:
<select>
{% for list in item.ListValues %}
<option>{{ list.Text }} </option>
{% endfor %}
</select>
</li>
{% endfor %}
使用以下课程:
public class Page: Drop
{
public string Name { get; set; }
public List<Field> Fields { get; set; }
}
public class Field : Drop
{
public string Name { get; set; }
public List<ListValue> ListValues { get; set; }
}
public class ListValue : Drop
{
public string Text { get; set; }
}
然后我创建了一个对象并像这样运行它:
page = MyPage; // This is the created object
Template template = Template.Parse(LiquidTemplate);
string output = template.Render(Hash.FromAnonymousObject(new { page = this.page }));
该对象填充为:
new Page
{
Name = "My Page",
Fields = new List<Field>
{
new Field
{
Name = "Title",
ListValues = new List<ListValue>()
},
new Field
{
Name = "Status",
ListValues = new List<ListValue>
{
new ListValue
{
Text = "Open"
}
}
}
}
};
即使对象很好,内部 for 循环也不会被填充。我看到很多空的内循环<option>
标签......
我刚开始使用 dotLiquid,我做错了什么?