尝试更改 cheetahVarStartToken 时发生 cheetah 解析错误
我正在编写一个 cheetah 模板,我想更改 cheetahVarStartToken ,以便我可以在该代码部分中使用 $ 表示 javascript 库,但是当我运行该模板时,我收到此错误
ConfigParser.ParsingError:文件包含解析错误: [第 2 行]: u'\t\t\t cheetahVarStartToken = "%"\n'
这是我的代码
#compiler-settings
cheetahVarStartToken = "%"
#end compiler-settings
<script>
//My javascript code
</script>
#compiler-settings reset
I am writing a cheetah template and I want to change the cheetahVarStartToken so that I can use the $ for javascript libraries in that section of code however when I run the template I am getting this error
ConfigParser.ParsingError: File contains parsing errors:
[line 2]: u'\t\t\t cheetahVarStartToken = "%"\n'
here is my code
#compiler-settings
cheetahVarStartToken = "%"
#end compiler-settings
<script>
//My javascript code
</script>
#compiler-settings reset
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该分配必须从第一列开始,因此请删除
cheetahVarStartToken
前面的空格:这有效:
这会爆炸:
That assignment must start in the first column, so remove the whitespace at the front of
cheetahVarStartToken
:This works:
This blows up: