我正在尝试在本地主机上运行的节点应用程序中实现ng 文件上传。我要在这里关闭演示,但是当我更改要下载的目录时
file.upload = Upload.upload({
url: 'uploadImages',
data: {file: file}
});
我得到一个 404:
angular.js:10765 POST http://localhost:8888/uploadImages/ 404(未找到)
我需要为该目录设置快速路由吗?我已经尝试过了,但它也不适用于
app.post('/uploadImages', cors(corsOptions), function(req, res){
res.sendfile('./uploadImages')
});
不太确定从这里去哪里。