javascript - Angular 文件上传跨域问题?
天蓬老师
天蓬老师 2017-04-11 12:35:34
0
1
195
  • 使用的是angular-file-upload

  • angular页面将图片上传到图片服务器,出现了跨域问题

//angular页面所在的域名是:http://dev.1-1dr.com
var testObj = angular.module('testApp',['angularFileUpload']);
testObj.controller("testCtr",function($scope,$upload){
    $scope.title = "测试文件上传";
        $scope.fileInfo = file;
        $upload.upload({
            //服务端接收
            url: 'http://upload.1-1dr.com/fileupload',
            //上传的同时带的参数
            data: { 'username': 'test'},
            file: file
        }).success(function (data) {
            //上传成功
            console.info(JSON.stringify(data));
        }).error(function (data, status, headers, config) {
            //上传失败
            console.log('error status: ' + status);
        });
    }
});
XMLHttpRequest cannot load http://upload.1-1dr.com/fileupload. Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://dev.1-1dr.com' is therefore not allowed access.
  • 按照CORS的解决方法,服务器端响应添加了Access-Control-Allow-Origin头,但问题还是没解决。

  • 想问,是不是angular在上传文件的请求中,也需要带一些参数,才能解决跨域问题?

天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!