📜  enc 类型的角标头 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:34.652000             🧑  作者: Mango

代码示例1
this.uploadFileToUrl = function(file, uploadUrl){
        var fd = new FormData();
        fd.append('file', file);
        $http.post(uploadUrl, fd, {
            transformRequest: angular.identity,
            headers: {'Content-Type': undefined}
        })
        .success(function(){
        })
        .error(function(){
        });
    }