0

我想将一个 ember 对象传递给车把助手,我使用了如下所示的助手,但它没有收到正确的对象。它只是在控制台中打印对象的名称,请参见下面的代码

//ember helper
Ember.Handlebars.registerHelper('act', function (value) {
            console.log(value); //It prints as item.label               
            return value+"1";
        }); 

//template
     {{#each item in content}}
                <li ><a {{bindAttr href="item.link"}}>{{act item.label}}</a></li>
                {{/each}}



 // Ember model which i am using


  App.AllRoutes = [Ember.Object.create({                
            label: "index",
            link:"#/",

        }),
  Ember.Object.create({
            label: "second",                
            link: "#/second",                
        }),

更新 即使 srinivasan 解决方案有效它也不适用于下面显示的问题。registerBoundHelper 返回带有脚本元素的值。所以 for It 不能在标签内使用。还有其他帮助吗?

//ember helper
Ember.Handlebars.registerBoundHelper('act', function (value) {
            console.log(value); //It prints as item.label 
          if (value == "somevalue"){ return  new Handlebars.SafeString("class='active'"); }

        }); 

//template
     {{#each item in content}}
                <li {{act item.label}} ><a {{bindAttr href="item.link"}}>{{label}}</a></li>
                {{/each}}

我正在使用 Ember.VERSION:1.0.0-rc.7,Handlebars.VERSION:1.0.0

提前致谢...

4

2 回答 2

0

请检查以下内容。

JAVASCRIPT:

App=Em.Application.create({});

App.Router.map(function(){
    this.route('all');
    this.route('index');
    this.route('second');          
});

Ember.Handlebars.registerBoundHelper('act', function (value) {              
        return value+"1";
    }); 

App.IndexRoute=Em.Route.extend({
    redirect:function(){this.transitionTo('all');}
});

App.AllRoute =Em.Route.extend({
    model:function(){
        return  [Ember.Object.create({                
        label: "index",
        link:"#/"
    }),
      Ember.Object.create({
        label: "second",                
        link: "#/second"                
    })];
 }
});

HTML

<script type="text/x-handlebars" >
    {{outlet}}
</script>

<script type="text/x-handlebars" data-template-name="all">
           {{#each item in controller}}
                <li ><a {{bindAttr href="item.link"}}>{{act item.label}}</a></li>
                {{/each}}


</script>
于 2013-08-21T19:26:00.273 回答
0

我不确定我是否理解你的问题。您正在传递item.label给助手,但您希望将项目作为参数?为什么不直接做{{act item}}

另外,你为什么要模仿Ember中已经存在{{#linkTo}}的助手?

于 2013-08-21T13:06:05.930 回答