我想通过使用任意的开始和结束符号来使用Angular .directive
,例如方括号:
<myDirective>callDirectiveAsUsual</myDirective><!-- usual directive call -->
<div>[[callDirectiveWithArbitrarySymbols]]</div><!-- new directive call -->
使翻译库更容易使用。我想写[[TranslateMePlease!]]
。
.directive
定义自定义开始和结束符号? (根据文档,这是不可能的。)$interpolateProvider
? (假设在Angular中存在这样的插值管道。)ng-bind
版本? ng-bind-custom
使用自己的$interpolateProviderCustom
,寻找方括号?