赞
踩
首先来看下Uncaught (in promise) SyntaxError: Unexpected token < in JSON at position 0 的意思是:未捕获(在promise)语法错误:在JSON中。
导致这个错误的原因是:
JS的ajax的请求方式:
- ajax_post(url_show, data_show).then(function (reset) {
- console.log(reset) // 显示数据
- let resh = JSON.parse(reset)
- console.log(resh) //显示数据
- create_item(resh)
PHP的代码模块:
下面的代码都是正确的。
- <?php
- //获取前端发来的数据
- $username = $_POST["username"];
- header("content-type:text/html;charset=utf-8");
- // 设置头 字符集
- header("Content-type: application/json");
- // //跨域
- header('Access-Control-Allow
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。