我创建了一个带有两个嵌套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,我做错了什么?
答案 0 :(得分:0)
此解决方案来自dotliquid的开发人员(我在github project的问题列表上发布了相同的问题)
dotliquid默认使用ruby convention。