javascript - AngularJS: Directive - Passing strings without having to use quotes - Stack Overflow

Here's a directive I created:HTML:<p-test something="'bla'"><p-test&

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 badges
Add a ment  | 

1 Answer 1

Reset to default 14

I'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

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743608951a4478225.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信