6

太累了,我知道我以前见过这个,但谷歌并没有帮助我制作一个单页骨干驱动的 WP 主题。数据只是 wordpress JSON API 数据 & 我现在很高兴在几个项目中使用了主干,但这次它表现不佳.. 它正在这样做(显示 html 标签而不是.. 很好地使用它们):

在此处输入图像描述

这是渲染代码:

this.template = '<div class="post-list">{{#posts}}<article><h2>{{title}}</h2><span class="postcontent">{{content}}</span></article>{{/posts}}</div>';

            if(this.model.get("rawdata").posts!=undefined && this.model.get("rawdata").posts.length>0)
            {
                var posts = [];
                for(i=0;i<this.model.get("rawdata").posts.length;i++)
                {
                    posts[i] = new PostModel(this.model.get("rawdata").posts[i]);
                }
                this.postCollection = new PostCollection(posts);
                this.htm = Mustache.render(this.template,this.model.get("rawdata"));
                this.$el.empty().html(this.htm);
                log(this.htm)           
            }
            else
            {
                //handle no-data result error
            }
4

2 回答 2

10

尝试将 & 放在模板中的变量名之前

{{& posts}}

或者

{{& title}}

这一切都在文档中

于 2012-05-10T20:58:26.803 回答
8

另一种选择是使用三重胡须:

{{{title}}}

它也在文档中。此选项也适用于Nustache

于 2012-11-28T19:32:35.343 回答