免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2925 | 回复: 2
打印 上一主题 下一主题

入门级ajax求助 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2016-06-17 15:38 |只看该作者 |倒序浏览
我读了w3cschools 的 ajax入门课,下面的html基本上照抄课程的例子:
---------------------------------------------------------------------------
<html>
<head>
<script>
function showHint(str) {
    if (str.length == 0) {
        document.getElementById("txtHint").innerHTML= "";
        return;
    } else {
        var xmlhttp = new XMLHttpRequest();
        xmlhttp.onreadystatechange= function() {
            if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
                document.getElementById("txtHint").innerHTML= xmlhttp.responseText;
            }
        };
        xmlhttp.open("GET", "..../cgi-bin/ajax_tst.cgi?str=" + str, true);
        xmlhttp.send();
    }
}
</script>
</head>
<body>

<p><b>Start typing a letter in the input field below:</b></p>
<form>
enter a letter: <input type="text" onkeyup="showHint(this.value)">
</form>
<p>Suggestions: <span id="txtHint"></span></p>
</body>
</html>

------------------------------------------------------------
下面是在我服务器上我写的perl cgi 程序 ajax_tst.cgi:
------------------------------------------------------------
#!/usr/bin/perl
use strict;
use CGI;
our $qq= new CGI;
print $qq->header("text/xml");

my $str=$qq->param("str");

#print "<?xml version='1.0'?><response>you entered $str</response>"; # 这句试过但不对
#print "you entered $str";                                  # 这句也试过但不对
print "<html><body>you entered $str</body></html>"; # 这句也不对

open(OUT,">/var/www/htm/upload/junk.txt"); # debug用
print OUT "seeing $str\n";                # 我在服务器上看到了这句的结果是对的,证明ajax正确的把输入的str传了进来,
1;
---------------------------------------------------------------

但是这段perl程序没有把答案正确的传回给浏览器。请问我的perl错在哪?如何改正?

谢谢!

论坛徽章:
0
2 [报告]
发表于 2016-06-17 16:30 |只看该作者
我把下面这句去掉后再试,也是不work:

print $qq->header("text/xml");

论坛徽章:
0
3 [报告]
发表于 2016-06-23 01:34 |只看该作者
求助于一个老美的技术论坛(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改写下面一句,问题就解决了:

  1. print $qq->header(
  2.   -type => 'text/html',
  3.   -access_control_allow_origin => '*');
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP