码迷,mamicode.com
首页 > 其他好文 > 详细

swig和angular双花括号的冲突

时间:2015-05-16 06:43:49      阅读:324      评论:0      收藏:0      [点我收藏+]

标签:

swig和angular都用{{name}}来作为模板中变量的取值, 那么要共用的话怎么办:

{% raw %}{{ foobar }}{% endraw %}

或者

config([‘$interpolateProvider‘,
    function($interpolateProvider) {
        // Swig uses {{}} for variables which makes it clash with the use of {{}} in AngularJS.
        // Replaced use of {{}} with [[]] in AngularJS to make it work with Swig.
        $interpolateProvider.startSymbol(‘[[‘);
        $interpolateProvider.endSymbol(‘]]‘);
    }
])

要么告诉swig不要解析{{}}(用raw), 要么配置一下angular, 不用{{}}

来源: http://stackoverflow.com/questions/25710698/escaping-the-double-curly-braces-in-swig-templates-for-angularjs

swig和angular双花括号的冲突

标签:

原文地址:http://www.cnblogs.com/walkerwang/p/4507267.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!