是否可以使用 curl 获取网页的 html 源代码并在其上运行 javascript 解释器,以便我获得生成的内容?
我需要获取的页面在其中使用了一些编码和生成的内容,所以我想首先运行 javascript 来获取转义和生成的内容......还是我需要正则表达式 javascript 并自己“编译”javascript?像
curl <myurl> | perl -ne 'm/unescape\((.*)\)/; print "$1"' | <now to something with that>
我知道 curl 中没有 javascript 引擎,但我可以调用另一个脚本/程序来完成这项工作吗?