AngularJS-Twig与双花括号冲突

如您所知,Angular和Twig都有共同的控制结构-双花括号。如何更改角度的默认值?

我知道我可以在Twig中做到这一点,但在一些项目中我做不到,只有JS.

85055 次浏览

According to this post you should be able to do it like this :

angular.module('app', [])
.config(['$interpolateProvider', function ($interpolateProvider) {
$interpolateProvider.startSymbol('[[');
$interpolateProvider.endSymbol(']]');
}]);

You can change the start and end interpolation tags using interpolateProvider service. One convenient place for this is at the module initialization time.

angular.module('myApp', []).config(function($interpolateProvider){
$interpolateProvider.startSymbol('{[{').endSymbol('}]}');
});

https://docs.angularjs.org/api/ng/provider/$interpolateProvider

As mentioned in similar question about Django and AngularJS, trick with changing default symbols (in Twig or AngularJS) can provide incompatibility with third-party software, which will use these symbols. So best advice I found in google: https://groups.google.com/d/msg/symfony2/kyebufz4M00/8VhF1KWsSAEJ

TwigBundle does not provide a configuration for the lexer delimiters as changing them would forbid you to use any templates provided by shared bundles (including the exception templates provided by TwigBundle itself).

However, you could use the raw tag around your angular templates to avoid the pain of escaping all curly braces: http://twig.sensiolabs.org/doc/tags/raw.html -- Christophe | Stof

Tag was renamed to verbatim

You can use too the attribute-based directive <p ng-bind="yourText"></p> is the same as <p>\{\{yourText}}</p>

If you're not interested in changing the template tags of the existing angular syntax which would require some confusing rewriting of your existing angular templates.

One can just use the twig template tags with angular tags like so:

{% verbatim %}\{\{yourName}}{% endverbatim %}

Found this on another similar thread answer: Angularjs on a symfony2 application

This question appears answered, but a more elegant solution that hasn't been mentioned is to simply enclose the curly braces in quote marks between the twig curly braces, like so:

\{\{ '\{\{myModelName}}' }}

If you are using a variable for the contents, do this instead:

\{\{ '\{\{' ~ yourvariable ~ '}}' }}

You should use single quotes, not double quotes. Double quotes enable string interpolation by Twig so you have to be more careful with the contents, especially if you are using expressions.


If you still hate seeing all those curly braces, you can also create a simple macro to automate the process:

{% macro curly(contents) %}
\{\{ '\{\{' ~ contents ~ '}}' }}
{% endmacro %}

Save it as a file and import it into your template. I am using ng for the name because it is short and sweet.

{% import "forms.html" as ng %}

Or you can put the macro at the top of your template and import it as _self (see here):

{% import _self as ng %}

Then use it as follows:

\{\{ ng.curly('myModelName') }}

This outputs:

\{\{myModelName}}

...and a follow up for those that use MtHaml alongside Twig. MtHaml enables the use of AngularJS curlies in the normal manner because any Twig code is accessed though - and = instead of \{\{ }}. For example:

Plain HTML + AngularJS:

<tr ng-repeat="product in products">
<td> \{\{ product.name }} </td>
</tr>

MtHaml + AngularJS:

%tr(ng-repeat="product in products")
%td \{\{ product.name }}

MtHaml + AngularJS with MtHaml-style Twig:

- set twigVariable = "somevalue"
= twigVariable
%tr(ng-repeat="product in products")
%td \{\{ product.name }}

You can use \\{\{product.name}} to get the expression ignored by Handlebars and used by Angular instead.

Alternatively you can change the characters used by Twig. This is controlled by the Twig_Lexer.

$twig = new Twig_Environment();


$lexer = new Twig_Lexer($twig, array(
'tag_comment'   => array('[#', '#]'),
'tag_block'     => array('[%', '%]'),
'tag_variable'  => array('[[', ']]'),
'interpolation' => array('#[', ']'),
));
$twig->setLexer($lexer);

I like @pabloRN, but I would prefer to use span instead of p, because for me p will add line to the result.

I will use this:

<span ng-bind="yourName"></span>

I also use aText with the cursor inside the double quote so I don't have to rewrite the whole thing over and over again.

This is a compiled version of the best answers and a example for verbatim blocks:

For single insertions, use:

\{\{ '\{\{model}}' }}

or if you use a twig variable

\{\{ '\{\{' ~ twigVariableWitModelName ~ '}}' }}

Verbatim, is very elegant and readable for several angular variables:

<table ng-table>
{% verbatim %}
<tr ng-repeat="user in $data">
<td data-title="'Name'">\{\{user.name}}</td>
<td data-title="'Age'">\{\{user.age}}</td>
</tr>
{% endverbatim %}
</table>

You can create a function in twig to surround your angular directives, so like instead of going ...

\{\{"angular"}}

you go ...

\{\{angular_parser("angular stuff here output curlies around it")}}