这是我的功能
result = casper.evaluate(function() {
$.get('IP/ajax.php', {a: 'get'}, function (json) {
return json;
});
return 'hello world';
});
当然结果永远不会像预期的那样得到json结果,但总会得到“hello world”(如果我评论返回'hello world',则为null)
有没有比在Jquery中使用某些承诺更容易的方法呢?