casperjs:如何从Jquery中检索GET结果?

时间:2017-11-26 13:44:36

标签: casperjs

这是我的功能

result = casper.evaluate(function() {
        $.get('IP/ajax.php', {a: 'get'}, function (json) {
            return json;
        });
       return 'hello world';
    });

当然结果永远不会像预期的那样得到json结果,但总会得到“hello world”(如果我评论返回'hello world',则为null)

有没有比在Jquery中使用某些承诺更容易的方法呢?

0 个答案:

没有答案