: Uncaught --> Smarty Compiler: Syntax error in template "file:D:\phpstudy_pro\WWW\9191zx.com\app\www\view\templates\default\tjqdm.htm" on line 13 "<script>LA.init({id: \"1xW6hWisowEuecti\",ck: \"1xW6hWisowEuecti\"})</script>" - Unexpected "{" <--
时间: 2023-06-11 10:07:32 浏览: 174
sqli-labs-master靶场安装下载
这个错误是由于在 Smarty 模板语言中 `{}` 通常用于表示变量或者语句块,但是在这个模板文件中,它们被当作了文本字符串的一部分,导致了语法错误。你需要在这段代码中将 `{}` 转义,或者使用 Smarty 的 `{literal}` 标签将这段代码包裹起来,以避免这个错误。例如:
```
<script>LA.init({literal}{id: "1xW6hWisowEuecti",ck: "1xW6hWisowEuecti"}{/literal})</script>
```
或者:
```
<script>LA.init(\{id: "1xW6hWisowEuecti",ck: "1xW6hWisowEuecti"\})</script>
```
阅读全文