- 论坛徽章:
- 0
|
求助于一个老美的技术论坛(tek-tips.com),问题终于解决了,一老美大侠说:
It could be CORS ( Cross-Origin Resource Sharing ) issue ? I mean, are the HTML page that performs the AJAX request and that "....cgi-bin/ajax_tst.cgi" on the same protocol + domain + port ?
If that is the problem, in the browser's console should appear a message like this :
Quote (console)
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at ..../cgi-bin/ajax_tst.cgi?str=j. (Reason: CORS header 'Access-Control-Allow-Origin' missing).
In such case the CGI script runs without problem, writes to junk.txt, outputs response, but the browser will not allow the JavaScript code to find out anything about it.
老美大侠建议我在服务器的CGI改写下面一句,问题就解决了:
- print $qq->header(
- -type => 'text/html',
- -access_control_allow_origin => '*');
复制代码 |
|