Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm trying to do something similar to this interpolateProvider in AngularJS 2 but can not find how to do this similarly for

$interpolateProvider.startSymbol('[[');
$interpolateProvider.endSymbol(']]');
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
965 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can pass a CompilerConfig to bootstrapModule where you can configure a regular expression that defines what characters are used for interpolation:

var INTERPOLATION_REGEXP = /{{([sS]*?)}}/g; // default

platformBrowserDynamic().bootstrapModule(AppModule, [
    {
        interpolationRegexp: INTERPOLATION_REGEXP
    }
]);

See also Angular2 setting view encapsulation globally


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...