这是我的代码
<select id="updOrg">
{{#each organization}}
<option id="{{_id}}" {{ifSelected ../user.profile.organization}}>{{name}} </option>
{{/each}}
</select>
在我的模板助手中,我的代码是
'ifSelected':function(org){
console.log(org);
console.log(this.name);
var name=this.name;
if(org === this.name){
console.log("matched");
return "selected";
}
}
在我得到的控制台中
TEST
XXX
TEST
TEST
后两个字符串匹配,但在 if 条件中不匹配
而且我matched
在控制台中也看不到。
这里有什么问题