gadicc/meteor-reactive-window Meteor 包的预期 space 错误问题

Expected space error issue with gadicc/meteor-reactive-window Meteor Package

使用gadicc/meteor-reactive-window Meteor Package根据屏幕尺寸显示不同的模板。 这是 pictureDisplatSection.html 文件

            <template name="pictureDisplaySection">
                <div class="display">

                {{#if rwindow.screen('lte','small') }}
                    {{> small}}         
                {{else}}        
                    {{> large}}         
                {{/if}}

                Current jQuery(window).width() is {{rwindow.$width}}
                </div>

            </template>

            <template name="small">
                I am Small
            </template>
            <template name="large">
                I am Large
            </template>

此代码最初已开始工作,但突然出现此错误

在构建应用程序时: client\template\pictureDisplaySection.html:4:预期 space ... {{#if rwindow.screen('lte','small') }} ... ^

您的申请有错误。等待文件更改。

我试图找到更多信息,但直到现在都没有成功。非常感谢您的帮助。

谢谢!!!

好像是语法错误。在 if 块内,函数接收参数,参数以 space 分隔,而不是括号 (..,..,)

{{#if rwindow.screen 'lte' 'small'}}
  {{> small}}         
{{else}}        
  {{> large}}         
{{/if}}