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

本文标签: javascriptAngularJS DirectivePassing strings without having to use quotesStack Overflow