我在server.js上有这段代码:
app.get('/download', function (req, res) {
var file = __dirname + "/upload_folder/file.png";
res.download(file);
})
但是如何从客户端调用此函数?
答案 0 :(得分:2)
假设您的应用服务器正在运行并正在聆听http://localhost:3000
。要练习该路线,您可以在此URL上执行GET请求:
http://localhost:3000/download