admin管理员组文章数量:1340301
Here's a directive I created:
HTML:
<p-test something="'bla'"></p-test>
JavaScript:
.directive('pTest', function() {
return {
scope: {
something: '=?'
},
templateUrl: 'ponents/testTemplate.html',
controller: 'testController'
};
});
I'd like to be able to pass 'bla' as a string without the '', in the following way:
<p-test something="bla"></p-test>
I know it's possible via the attributes parameter in link, but it's irrelevant in this case (correct me if I'm wrong) as I'm passing these parameters directly to scope.
Here's a directive I created:
HTML:
<p-test something="'bla'"></p-test>
JavaScript:
.directive('pTest', function() {
return {
scope: {
something: '=?'
},
templateUrl: 'ponents/testTemplate.html',
controller: 'testController'
};
});
I'd like to be able to pass 'bla' as a string without the '', in the following way:
<p-test something="bla"></p-test>
I know it's possible via the attributes parameter in link, but it's irrelevant in this case (correct me if I'm wrong) as I'm passing these parameters directly to scope.
Share edited Jan 3, 2015 at 19:56 PSL 124k21 gold badges256 silver badges243 bronze badges asked Jan 3, 2015 at 19:43 Maxim LacoMaxim Laco 5452 gold badges7 silver badges17 bronze badges1 Answer
Reset to default 14I'd like to be able to pass 'bla' as a string without the '', in the following way:
You would just need text binding (@
) binding for that, instead of 2 way binding.
.directive('pTest', function() {
return {
scope: {
something: '@?' //<-- Here
},
templateUrl: 'ponents/testTemplate.html',
controller: 'testController'
};
});
and with the text binding if you want to bind scope properties then use interpolation. i.e example if bla is a scope variable holding a string then just do:
<p-test something="{{bla}}"></p-test>
Plnkr
本文标签: javascriptAngularJS DirectivePassing strings without having to use quotesStack Overflow
版权声明:本文标题:javascript - AngularJS: Directive - Passing strings without having to use quotes - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743608951a2509701.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论