微擎前端怎么接收后端json格式的数据

前端中接收微擎后端的普通字符串的时候在script标签中用引号扩起来在引用

例如:

<script>
  test_json = "{$test_string}"
</script>

 

接收 json 格式的数据时就不加上引号

<script>
  test_json = {$test_string}
</script>

 

posted @ 2020-08-12 10:51  GetcharZp  阅读(612)  评论(0编辑  收藏  举报