我是 Riot.js 的新手,在从对象构建 html 元素时遇到问题。我有这样的结构:
var self = this;
self.objects = [
{ tag: "h1", text: "hello" },
{ tag: "h2", text: "world" }
];
我想在浏览器中得到这样的东西
<h1>hello</h1>
<h2>world</h2>
这就是我所拥有的
<virtual each={objects}><{ tag }> { text } </{ tag }></virtual>
它给了我
"<h1>hello<h1>"
"<h2>world<h2>"
如何删除"
引号?或者如何改进我的代码以在页面上显示真实的 html 标记,而不是字符串?