我有一個在 localhost:3000
執行 VueJS 的網站,它執行一些呼叫 this.nextImage()
的動作。
methods: // content // async nextImage() { console.log("In nextImage from App.vue"); // keeping track of location try { const response = await axios.get('http://localhost:5050/images'); console.log(response.data); [how to make an image?] } catch (error) { console.error(error); } } // content // <template> <!-- stuff --> <div class="picture"><img :src="[what should go here?]" :alt="imageName"></div> <!-- more stuff --> <template
在 localhost:5050
上是 Express 伺服器,其中包含:
const path = require('path') // content // app.get('/images', (req, res) => { console.log("Express server: /images"); // tracking location let imageName = 'myImage' let imagePath = path.join(__dirname, '/images/' + imageName + '.jpeg') res.sendFile(imagePath) })
記錄response.data給出
����JFIF��� !.%+!&8&+/1555$;@;4?.4514+$+44444444444444444444444444444444444444444444444444���"����B !1AQ2aq���"BR�����b�#3CSr���D��$%4����&1Q!Aa�2q�"��?�Z�UyEZL�>��ˀ��@�'G ��YU�U�$RlX�d<ǜ (... abbreviated because I had too much code)
我需要兩件很簡單的事情:
P粉7864325792024-03-27 15:05:27
這是一個非常簡單的修復。我實際上不需要發送文件本身,只需發送文件的連結(只需 app.send(imagePath)
)。當客戶端對伺服器進行GET 呼叫時,它們會獲得一個url,該url 可以包含在img
標記中,如下所示:<img source="imagePath">
。