为了账号安全,请及时绑定邮箱和手机立即绑定

当由javascript解析时,PHP Ajax响应会提供未定义的数据

当由javascript解析时,PHP Ajax响应会提供未定义的数据

慕村9548890 2021-04-16 18:15:28
它不是在今天早些时候给出错误的,但是现在每次我上传文件时Unexpected number in JSON at position 161我查看了文件上传JSON,并了解到该文件传递了非法的0:    {    "ftype":"file",    "meta":"prem-sal2.jpg",    "fname":"screenshot1",    "id":"392",    "epn":"63",    "action":"updategamefiles",    "file":{      "name":"prem-sal2.jpg",      "type":"image/jpeg",      "tmp_name":"/tmp/phpxPZNCL",      "error":0,      "size":968969     }    }这是选择文件的javascript:else if (fieldclass[1].indexOf("screenshot") >= 0) {                ftype = 'file';                document.getElementsByClassName(fname)[0].getElementsByTagName('label')[0].innerHTML = 'Loading';                meta = this.files[0].name;                file = this.files[0];                 if( file.type === "image/jpg" || file.type === "image/png"  || file.type === "image/gif" || file.type === "image/jpeg") {                 extension = true;                }             }因此,如何避免在文件JSON中收到该错误:0?嗯,忘了添加Ajax请求:    if (extension === true) {    var data = new FormData();    data.append('file', file);    data.append('ftype', ftype);    data.append('meta', meta);    data.append('fname', fname);    data.append('id', id);    data.append('epn', epn);    data.append('action', 'updategamefiles');    var value = jQuery.ajax({        data : data,        type: 'POST',        url: ajaxurl,        cache: false,        processData: false, // Don't process the files        contentType: false, // Set content type to false as jQuery will tell the server its a query string request        dataType: 'json',
查看完整描述

1 回答

?
精慕HU

TA贡献1845条经验 获得超8个赞

事实证明,die();在从php后端响应以回显已编码的json之后,我不得不这样做,但是我没有将额外的数据添加到json中导致问题。


查看完整回答
反对 回复 2021-04-29
  • 1 回答
  • 0 关注
  • 102 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信