在phantomjs中解析发布数据

时间:2013-10-23 19:22:00

标签: javascript phantomjs

我正在使用POSTMAN对chrome的扩展,我正在尝试向phantomjs发送一个帖子请求我已经设法通过设置postman发送一个post请求到一个phantomjs服务器脚本,如附件截图enter image description here

我的phantomjs脚本如下:

// import the webserver module, and create a server
var server = require('webserver').create();
var port = require('system').env.PORT || 7788;     

console.log("Start Application");
console.log("Listen port " + port);    

// Create serever and listen port 
server.listen(port, function(request, response) {    

      console.log("request method: ", request.method);  // request.method POST or GET     

      if(request.method == 'POST' ){
                       console.log("POST params should be next: ");
                       console.log(request.headers);
                    code = response.statusCode = 200;
                    response.write(code);
                    response.close();

                }
 });  

当我在命令行运行phantomjs时,这是输出:

$ phantomjs.exe myscript.js
Start Application
Listen port 7788
null
request method:  POST
POST params should be next:
[object Object]
POST params:  1=bill&2=dave

所以,它确实有效。我现在的问题是如何将post body解析为变量,所以我可以在脚本的其余部分访问它。

1 个答案:

答案 0 :(得分:7)

要阅读发布数据,您不应使用request.headers,因为它的HTTP标头(编码,缓存,Cookie,...)

正如here所述,您应该使用request.postrequest.postRaw

request.post是一个json对象,因此您将其写入控制台。这就是你得到[object Object]的原因。在登录时尝试应用JSON.stringify(request.post)

由于request.post是一个json对象,您还可以使用索引器直接读取属性(如果未发布属性,请不要忘记添加基本检查)

以下是您的脚本的更新版本

// import the webserver module, and create a server
var server = require('webserver').create();
var port = require('system').env.PORT || 7788;

console.log("Start Application");
console.log("Listen port " + port);

// Create serever and listen port 
server.listen(port, function (request, response) {

    console.log("request method: ", request.method);  // request.method POST or GET     

    if (request.method == 'POST') {
        console.log("POST params should be next: ");
        console.log(JSON.stringify(request.post));//dump
        console.log(request.post['1']);//key is '1'
        console.log(request.post['2']);//key is '2'
        code = response.statusCode = 200;
        response.write(code);
        response.close();
    }
});