我有一个Ajax函数,能够将json代码发布到我的python CGI脚本中。但是cgi脚本无法读取json。
Ajax实现:-
$.ajax({
url: "add.py",
type: "POST",
data: JSON.stringify({"things":data}),
success: function(response){
alert(response)
//var res = JSON.parse(response);
}
});
当我在add.py中看到标题时,我会看到一个json。
{"things":[{"name":"jnj","qty":23}]}
但是当我的python cgi脚本无法读取此json时。
我收到以下错误(取自apache日志文件)。
Original exception was:
Traceback (most recent call last):
File "/var/www/things/add.py", line 27, in <module>
myjson = json.load(sys.stdin)
File "/usr/lib/python3.6/json/__init__.py", line 299, in load
parse_constant=parse_constant, object_pairs_hook=object_pairs_hook, **kw)
File "/usr/lib/python3.6/json/__init__.py", line 354, in loads
return _default_decoder.decode(s)
File "/usr/lib/python3.6/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/usr/lib/python3.6/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
[Fri Jul 12 01:53:24.965064 2019] [http:error] [pid 444:tid 139764057495296] [client 172.17.0.1:47902] AH02429: Response header name '<!--' contains invalid characters, aborting request, referer: http://localhost:8008/things/add.html
基本上说该对象为None。
下面是我的python代码,您能告诉我其中有什么问题吗?我已经使用json.loads和json.load模块加载了json,但是没有运气。
#!/usr/bin/python3
import cgi
import cgitb
import json
import sys
import os
cgitb.enable()
form = cgi.FieldStorage()
myjson = json.load(sys.stdin)
print("Content-type: application/json\n\n")
print('<html>')
print('<head>')
print("<p>hello")
print("<p>",json.dumps(myjson),"</p>")
print(' </head>')
print('</html>')