编辑:我可以将参数传递给新的视图声明吗?所以像
new articleView({
template: "my desired template",
})
假设我有一个对象数组,其中每个对象代表一个主题并包含一些属性:标题、模板类型和文章数组。所有主题呈现几乎相同减去一些模板差异。
我正在使用主干,我有一个一般性问题:每个“主题”是否应该是同一集合类型的单独实例?我将在哪里声明要用于每个主题的模板类型?集合是否应该具有可变模板类型属性?
var topics = [
{
title: "Topic One",
template: "detailedView",
articles: [
{
title: "A very good article",
timestamp: "2013-01-24"
},
{
//more articles here
}
]
},
{
//another topic here...
}
];