gpt4 book ai didi

angularjs - 如何使用多部分/表单数据在 Rest Angularjs 中上传文件

转载 作者:行者123 更新时间:2023-12-02 09:30:32 25 4
gpt4 key购买 nike

我的html代码

<form  method="post" enctype="multipart/form-data" ng-controller="commentCtrl" name="form">
<a href="" type="file" class="custom-height"><img src="source/assets/images/icons/icofileattached.png" class="attachmentpng-height" ngf-select="uploadFiles($file)" ng-model="files"/></a>
<md-button type="submit" class="md-raised custom-submit-button" ng-click="MakeComments()"> SUBMIT </md-button>
</form>

感谢您的帮助

最佳答案

这段代码对我有用......

$scope.uploadFiles = function(file) {
console.log(file);
$scope.fileData = file;
var fd = new FormData();
fd.append('file', file);
Restangular.one('/api/files/end points').withHttpConfig({transformRequest: angular.identity})
.customPOST(fd, '', undefined, {'Content-Type': undefined})
};

关于angularjs - 如何使用多部分/表单数据在 Rest Angularjs 中上传文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33730489/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com