欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

服务器返回出现:error on line 19 at column 1: Extra content at the end of the document

程序员文章站 2022-05-13 15:30:52
...
PHP APP接口开发中与服务器交互,返回数据时如出现以下错误

JSON方式返回数据,火狐浏览器如果显示如图:

服务器返回出现:error on line 19 at column 1: Extra content at the end of the document

XML方式显示返回数据,火狐浏览器显示如图:

服务器返回出现:error on line 19 at column 1: Extra content at the end of the document

JSON与XML方式返回数据,猎豹浏览器显示如图:

服务器返回出现:error on line 19 at column 1: Extra content at the end of the document

原因有可能包括以下几点:

(1)这种情况是服务器处理返回了,但是返回的格式有问题。

查看返回数据的格式是否为需要的格式,比如JSON格式, header("Content-Type:text/json");

(2)正常返回的过程中,有输出,返回的结果不对。

服务器返回出现:error on line 19 at column 1: Extra content at the end of the document

(3)需要注意的是XML文档声明只允许出现在文档的开始位置

服务器返回出现:error on line 19 at column 1: Extra content at the end of the document

以上就介绍了服务器返回出现:error on line 19 at column 1: Extra content at the end of the document,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。