1

我正在使用 PHP/CURL 并希望通过设置下面的 postfields 数组将 POST 数据发送到我的 phantomjs 脚本:

在我的 php 控制器中,我有:

$data=array('first' => 'John', 'last' => 'Smith');
$url='http://localhost:7788/';
$output = $this->my_model->get_data($url,$data);

在我的 php 模型中,我有:

public function get_data($url,$postFieldArray) {

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_COOKIEJAR, $cookieFile);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)");               
    curl_setopt($ch, CURLOPT_POST, TRUE);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $postFieldArray);
    curl_setopt($ch, CURLOPT_URL, $url);
    $output = curl_exec($ch);

在我在本地运行的 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) {    

        // Print some information Just for debbug 
        console.log("We got some requset !!!"); 
        console.log("request method: ", request.method);  // request.method POST or GET     

        if(request.method == 'POST' ){
                       console.log("POST params should be next: ");    

                    console.log("POST params: ",request.post);
                    exit;
                }

我首先从命令行启动并运行 phantomjs 脚本 (myscript.js),然后运行我的 php 脚本。

输出是:

$ phantomjs.exe myscript.js
Start Application
Listen port 7788
null
We got some requset !!!
request method:  POST
POST params should be next:
POST params:  ------------------------------e70d439800f9
Content-Disposition: form-data; name="first"

John
------------------------------e70d439800f9
Content-Disposition: form-data; name="last"

Smith
------------------------------e70d439800f9--

我对输出感到困惑。我期待更多类似的东西:

first' => 'John', 'last' => 'Smith

有人可以解释为什么它看起来像这样吗?如何解析 request.post 对象以分配给 myscript.js 中的变量

编辑:

我已经做出了您在How can I send POST data to a phantomjs script中的回答中建议的更改。

正如你所建议的,我将 php/curl 编码更改为

 curl_setopt($ch, CURLOPT_POSTFIELDS, urlencode(json_encode($postFieldArray))); 

在 phantomjs 脚本中,我有:

if(request.method == 'POST' ){
                   console.log("POST params should be next: ");
                   console.log(request.headers);
                   var data = JSON.parse(request.post);
                   console.log("POST params: ",data);

当我从 php 运行脚本时,我在控制台中看到以下内容:

Start Application
....
POST params should be next:
[object Object]

此时,脚本挂起,我在开发工具浏览器控制台中看不到任何输出。你能告诉我如何查看对象的内容吗?

4

1 回答 1

2

看起来表单被编码为multipart/form-data而不是application/x-www-urlencoded. 显然,当值CURLOPT_POSTFIELDS是一个数组时,PHP 会这样做。您可以通过添加console.log(request.headers)到您的调试代码来检查这一点。

不幸的是,看起来 PhantomJS 不支持multipart/form-data. 如果您不愿意寻找另一个 Web 服务器,最简单的解决方案可能是使用 JSON 手动编码数据。我已经修复了上一个答案中的错误并添加了一些示例代码。

于 2013-10-19T03:52:12.170 回答