前端中接收微擎后端的普通字符串的时候在script标签中用引号扩起来在引用
例如:
<script> test_json = "{$test_string}" </script>
接收 json 格式的数据时就不加上引号
<script> test_json = {$test_string} </script>