使用https模塊爬https協(xié)議的圖片,不能夠直接在瀏覽器中成功展示圖片,why?
var?fs?=?require('fs'); var?https?=?require('https'); var?request?=?require('request'); https.createServer(function(req,res){ request('http://idcbgp.cn/static/img/index/logo_new.png') .pipe(res) }) .listen(8090)
2018-12-17
樓主怎么解決的
2018-08-03
確實(shí)不行,https模塊和http模塊的createServer不一樣,但是http模塊可以獲取https的圖片
2018-01-30
我這邊可以,有報(bào)錯(cuò)嗎?