我们想在我们的网页中动态插入 HTML。我们正在使用 mustache 来添加动态内容。内容是动态的和有条件的。为了处理条件逻辑,我们使用 mustache,即
json: {
name: "James",
isJames: true
}
然后在模板中你可以有:
{{#isJames}}
//insert HTML for James
{{/isJames}}
{{^isJames}}
//insert HTML for NOT James
{{/isJames}}
对于上述条件,我们有不同的 HTML 模板保存在我们的数据库中。此外,返回的 HTML 取决于用户的 cookie。有什么方法可以直接在我们的 AMP 页面中插入从服务器返回的 HTML?