0

我正在使用http://www.ajax-cross-domain.com/ 我已经按照页面上的说明设置了本地 Ampps 服务器。页面上给出的示例运行成功。

我的 test.html 包含:

<script 
type="text/javascript" 
src="cgi-bin/ACD/ACD.js?uri=(http://toolkit.tuebingen.mpg.de/hhpred/run/hhpred)&amp;method=post&amp;postdata=(sequence_input=&amp;sequence_file=target.seq&amp;informat=fas&amp;submitform=Submit%2Bjob&amp;hhpred_dbs%5B%5D=%2Fcluster%2Ftoolkit%2Fproduction%2Fdatabases%2Fhhpred%2Fnew_dbs%2Fpdb70_6Jun13&amp;genomes_first=true&amp;prefilter=hhblits&amp;maxhhblitsit=3&amp;ss_scoring=2&amp;alignmode=local&amp;more_options_on=false&amp;Ehhblitsval=1E-3&amp;cov_min=20&amp;qid_min=0&amp;mact=0.3&amp;compbiascorr=1&amp;maxseq=1&amp;width=80&amp;Pmin=20&amp;maxlines=100&amp;jobid=&amp;mail=)">
</script>
<script type="text/javascript">
alert(ACD.responseText);
</script> `

ACD.js 包含:

my @allowed_uris = (
    'uri=(http://toolkit.tuebingen.mpg.de/hhpred/run/hhpred)&method=post&postdata=(sequence_input=&sequence_file=target.seq&informat=fas&submitform=Submit+job&hhpred_dbs%5B%5D=%2Fcluster%2Ftoolkit%2Fproduction%2Fdatabases%2Fhhpred%2Fnew_dbs%2Fpdb70_6Jun13&genomes_first=true&prefilter=hhblits&maxhhblitsit=3&ss_scoring=2&alignmode=local&more_options_on=false&Ehhblitsval=1E-3&cov_min=20&qid_min=0&mact=0.3&compbiascorr=1&maxseq=1&width=80&Pmin=20&maxlines=100&jobid=&mail=)'
    );

my @allowed_uris变量中。ACD.js 的其余部分与http://www.ajax-cross-domain.com/ACD-source.txt相同

我想提交此表单http://toolkit.tuebingen.mpg.de/hhpred并使用 AJAX 获取数据。它正在给予500 Internal Error

任何人都可以解释如何做到这一点?

4

1 回答 1

0

在 test.html

src="http://www.ajax-cross-domain.com/cgi-bin/ACD/ACD.js?...

需要改为

src="cgi-bin/ACD/ACD.js?...

'这很容易,但隐藏起来:)

于 2013-06-07T05:11:50.787 回答