我想從前端恢復上傳圖像....我將使用ngFileUploader組件。 我的前端代碼:跨域請求
function SampleController(SampleData,Upload,$http) {
var vm = this;
vm.uploadFiles = function(files, errFiles) {
Upload.upload({
url: "localhost:5000/upload", //webAPI exposed to upload the file
data: {
file: files
}
}).then(function(resp) {
console.log(resp)});
}
,我會在HTML文件中加入NGF選。 它會顯示錯誤 - XMLHttpRequest無法加載localhost:5000/upload。協議方案僅支持交叉源請求:http,data,chrome,chrome-extension,https,chrome-extension-resource。 我該如何解決?
'url:「http:// localhost:5000/upload」' –
URL的前面被忽略。投票結束爲錯字。 – Quentin
它會再次提供錯誤 - POST http:// localhost:3000/upload 404(Not Found) – raksha