标签: javascript node.js xmlhttprequest axios
我正在尝试使用axios获取页面的html,但似乎此页面具有加载功能,我得到的结果是加载页面,而不是加载后的结果。
axios.get(page).then((response) => { console.log(response.data) // returns loading state of webpage })
有什么想法吗?