从JQuery模板迁移后,谁能提供有关如何呈现JSRender模板的帮助?

使用旧的JQuery Template系统,我的HTML页面中包含以下内容:

        <script id="pageTmpl1" type="text/x-jquery-tmpl">
        <div class="${theClass1}" style="${theStyle1}">
            <div class="front1">
                <div class="outer1">
                    <div class="content1" style="${theContentStyleFront1}">
                        <div class="inner1">{{html theContentFront1}}</div>
                    </div>
                </div>
            </div>
            <div class="back1">
                <div class="outer1">
                    <div class="content1" style="${theContentStyleBack1}">
                        <div class="inner1">{{html theContentBack1}}</div>
                    </div>
                </div>
            </div>
        </div>


然后从一个单独的js文件开始-摘录自此文件,其中$( '#pageTmpl1' ).tmpl( pageData ).appendTo( this.$el );是关键部分:

        _layout             : function() {

        this._setLayoutSize();

        for( var i = 0; i <= this.pagesCount - 2; ++i ) {

            var $page       = this.$pages.eq( i ),
                pageData    = {
                    theClass1                   : 'page1',
                    theContentFront1            : $page.html(),
                    theContentBack1             : ( i !== this.pagesCount ) ? this.$pages.eq( i + 1 ).html() : '',
                    theStyle1                   : 'z-index: ' + ( this.pagesCount - i ) + ';left: ' + ( this.windowProp.width / 2 ) + 'px;',
                    theContentStyleFront1       : 'width:' + this.windowProp.width + 'px;',
                    theContentStyleBack1        : 'width:' + this.windowProp.width + 'px;'
                };

            if( i === 0 ) {

                pageData.theClass1 += ' cover1';

            }
            else {

                pageData.theContentStyleFront1 += 'left:-' + ( this.windowProp.width / 2 ) + 'px';

                if( i === this.pagesCount - 2 ) {

                    pageData.theClass1 += ' cover-back1';

                }

            }

            $( '#pageTmpl1' ).tmpl( pageData ).appendTo( this.$el );

        }

        this.$pages.remove();
        this.$flipPages     = this.$el.children( 'div.page1' );
        this.flipPagesCount = this.$flipPages.length;

        this._adjustLayout( ( this.state === undefined ) ? this.currentPage : this.state );

    },


有谁知道我必须如何更改上述基本设置才能迁移到JSRender?

编辑:

感谢您的答复。

为了给我的问题一些背景,这里有两个例子。第一个使用jQuery模板,第二个使用建议的更改(使用JSRender)。


http://www.timm.ie/example_jqt/
http://www.timm.ie/example_jsr/


尽管遵循指示的语法更改,但最终没有出现期望的结果(在第二种情况下),并且没有错误可做。

所做的更改来自:

        <script id="pageTmpl" type="text/x-jquery-tmpl">
        <div class="${theClass}" style="${theStyle}">
            <div class="front">
                <div class="outer">
                    <div class="content" style="${theContentStyleFront}">
                        <div class="inner">{{html theContentFront}}</div>
                    </div>
                </div>
            </div>
            <div class="back">
                <div class="outer">
                    <div class="content" style="${theContentStyleBack}">
                        <div class="inner">{{html theContentBack}}</div>
                    </div>
                </div>
            </div>
        </div>
    </script>


至:

        <script id="pageTmpl" type="text/x-jsrender">
        <div class="{{:theClass}}" style="{{:theStyle}}">
            <div class="front">
                <div class="outer">
                    <div class="content" style="{{:theContentStyleFront}}">
                        <div class="inner">{{>theContentFront}}</div>
                    </div>
                </div>
            </div>
            <div class="back">
                <div class="outer">
                    <div class="content" style="{{:theContentStyleBack}}">
                        <div class="inner">{{>theContentBack}}</div>
                    </div>
                </div>
            </div>
        </div>


在index.html中,以及从:

$( '#pageTmpl' ).tmpl( pageData ).appendTo( this.$el );


至:

$("this.$el").html(
                $("#pageTmpl").render(pageData)
            );


在jquery.flips.js中。

您可以提供有关为什么这样做的任何建议,我们将不胜感激。

最佳答案

这是使用jQuery模板的页面:jquery-tmpl/demos/step-by-step/.../0_local-data-source.html

这是使用jsRender:jsrender/demos/step-by-step/01_inserting-data.htmlCode here)的等效页面。

所以你看到

jQuery模板:

$("#movieTemplate").tmpl(movies).appendTo("#movieList");


映射到:

jsRender

$("#movieList").html(
    $("#movieTemplate").render(movies)
);


实际上,JsRender并不使用DOM进行渲染。

因此,您也可以将上面的代码写为:

var html = $("#movieTemplate").render(movies); // Render to string
$("#movieList").html(html); // Insert in DOM


或者,您可以编写:

var compiledTemplate = $.templates("#movieList"); // Compile template
var html = compiledTemplate.render(movies);  // Render to string
$("#movieList").html(html); // Insert in DOM


基于字符串的渲染是使用JsRender的better perf的原因之一。

关于模板标签的映射方式,以下是一些基本标签:

jQuery模板:


${name}
{{html synopsis}}
{{if languages}}...{{else subtitles}}...{{else}}...{{/if}}
{{each languages}}...{{/each}}


jsRender


{{:name}}(请参阅docs
{{>synopsis}}(请参阅docs
{{if languages}}...{{else subtitles}}...{{else}}...{{/if}}(因此此处无变化:请参见docs
{{for languages}}...{{/for}}(请参阅docs

10-03 00:13