深圳市建网站公司,群晖 wordpress外网,高质量的中山网站建设,怎么增加网站关键词库拷贝模板时报错#xff1a;AnsibleError: template error while templating string: Missing end of comment tag.
原因
shell脚本中地{#和jinja中的语法comment tag相同#xff0c;而且只有一半#xff0c;导致无法渲染导致。
解决
在有语法冲突的地方使用组合标签{% r…拷贝模板时报错AnsibleError: template error while templating string: Missing end of comment tag.
原因
shell脚本中地{#和jinja中的语法comment tag相同而且只有一半导致无法渲染导致。
解决
在有语法冲突的地方使用组合标签{% raw %} 、{% endraw %}包裹起来例如
{% raw %}if [[ ${#info_array[*]} -ne 3 ]];thenecho ERROR:${info} Format Error,Please Excute:bash $0 -h exit 1fi
{% endraw %}拷贝模板时报错AnsibleError: template error while templating string: expected token ‘:’, got ‘}’. String
错误的写法
{% if {{ db_type}} mysql %}
a1
{% endif %}正确的写法
{% if db_type mysql %}
a1
{% endif %}总结在iffor等条件判断语句中变量不需加{{ }}