错误信息:Uncaught SyntaxError: Unexpected token \ in JSON at position 0

通过ajax向后台请求客户端上传文件的path:上传路径的时候,path是转换成json字符串才传过来的,代码如下:

form.parse(req, (err, fields, files) => {
        // 获取上传文件的上传地址
        var path = files.file.path;
        // 将path这个绝对路径截取为当前主文件的相对路径
        path = path.split('public')[1];
     // 将文件上传路径转成json字符串 res.send(JSON.stringify(path)); });

如果在后台转成json字符串,在前端需要转回json对象形式,否则会404找不到页面。

 

上一篇:[INS-08101] Unexpected error while executing the action at state: ‘supportedOSCheck‘


下一篇:使用appnium,Uiautomatorviewer连接手机报错:Unexpected error while obtaining UI hierarchy java.lang.reflect.In