即使我是scrapy 框架的新手,我也可以使用scrapy 编写好的蜘蛛。最近我遇到了这个页面,通过输入地址,在提交时我必须捕获纬度和经度。有人可以帮忙吗?
此代码适用于正常的发布请求:
return [FormRequest.from_response(response,
formdata={'username': 'john', 'password': 'secret'},
callback=self.after_login)]
但是像上面这样的基于 ajax 的表单请求呢?