最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

programmeradmin1浏览0评论

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

发布评论

评论列表(0)

  1. 暂无评论