标签: django google-closure-compiler
可能重复: Partially skip sections with Google Closure Compiler
我正在尝试使用http://closure-compiler.appspot.com/home处的闭包编译器来压缩某些JS。但它失败了,因为我在我的javascript中有Django模板标签,如:
{% if user.is_authenticated %}
和
{{ csrf_token }}
Closure编译器说我的语法不正确。有没有办法告诉编译器忽略模板标签?
答案 0 :(得分:1)
您需要使用与IE Conditional Comments或PHP Tags相同的技巧。