suchen

Heim  >  Fragen und Antworten  >  Hauptteil

node.js - PhantomJS 获取请求资源的 response.body

在 使用 PhantomJSwebpage 模块 打开 weibo.con 页面 有 XMLHttpRequest 资源请求
PhantomJS 能直接得到 该资源的 返回值吗 (response.body)

黄舟黄舟2779 Tage vor701

Antworte allen(1)Ich werde antworten

  • 黄舟

    黄舟2017-04-17 14:31:08

    你可以监听“文件收到”后的事件,如果类型是 ajax,那么你就用 ajax 调用这个 url。
    现在不用 phantomjs 写脚本了,一般用 casperjs,但是思路一样。
    代码可以参考:

    casper.on('resource.received',function(resource){
        if (resource.contentType.indexOf("json") != -1 && resource.stage == "end") {
            var data = casper.evaluate(function(url){
                // synchronous GET request
                return __utils__.sendAJAX(url, "GET");
            }, resource.url);
            console.log(data)
            // do something with data, you might need to JSON.parse(data)
        }
    })

    Antwort
    0
  • StornierenAntwort