无法使用bash中的/ dev / stdin访问POSTed变量

时间:2012-02-06 08:04:53

标签: linux bash post cgi

如何在bash中使用xmlHttpReq.send的帮助来访问发送的值?

在perl中,我可以访问从html / javascript文件发送的数据:

#!/usr/bin/perl -w

use CGI;

$query = new CGI;

$secretword = $query->param('w');

print $query->header;
print "<p>The secret word is <b>$secretword</b></p>"

我试图在sh脚本中访问'w'但是从/ dev / stdin读取不起作用。浏览器中没有显示任何内容。

#!/bin/sh

echo "Content-type: text/html"
echo ""
echo $(</dev/stdin)

如何在sh中访问通过POST发送的数据?

这是使用的html / javascript文件:

<html>
<head>
<title>Ajax Example</title>
<script language="Javascript">
function xmlhttpPost(strURL) {
    var xmlHttpReq = false;
    var self = this;
    if (window.XMLHttpRequest) {
        self.xmlHttpReq = new XMLHttpRequest();
    }
    else if (window.ActiveXObject) {
        self.xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
    }
    self.xmlHttpReq.open('POST', strURL, true);
    self.xmlHttpReq.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
    self.xmlHttpReq.onreadystatechange = function() {
        if (self.xmlHttpReq.readyState == 4) {
            updatepage(self.xmlHttpReq.responseText);
        }
    }
    self.xmlHttpReq.send(getquerystring());
}

function getquerystring() {
    var form     = document.forms['f1'];
    var word = form.word.value;
    qstr = 'w=' + escape(word);
    return qstr;
}

function updatepage(str){
    document.getElementById("result").innerHTML = str;
}
</script>
</head>
<body>
<form name="f1">
  <p>word: <input name="word" type="text">  
  <input value="Go" type="button" onclick='JavaScript:xmlhttpPost("./cgi-bin/test_ajax_bash.sh")'></p>
  <div id="result"></div>
</form>
</body>
</html>

2 个答案:

答案 0 :(得分:1)

第一步:确保通过回显标准输出实际看到的东西:

echo "Content-type: text/html"
echo ""
echo "Some HTML code"

然后使用猫

echo "Content-type: text/html"
echo ""
cat

您可以在文件中查看sript输出,而不是在浏览器中进行调试。

echo "Content-type: text/html"
echo ""
cat > post_data.txt

答案 1 :(得分:1)

使用read shell builtin命令从标准输入读取行:

#!/bin/sh

echo "Content-type: text/plain"
echo

while read line; do
  echo $line
done

此外,您不需要""来回显换行。如果输出纯文本而不是html,也可以使用text/plain mime类型。