使用表单输入上传文件

时间:2015-07-24 14:27:22

标签: angularjs file-upload

我一直在互联网上寻找一个简单的推荐方式在angularjs中上传单个文件,到目前为止我找不到,我想要的是能够做到像这样的东西:

<input type="file" ng-model="file" id="form.file" />
<input type="text" ng-model="name" id="form.name" />

然后在我的控制器/服务中,我有一个发布所有表单数据的函数:

SomeRandomService.save = function($scope.form) {

    return $http
        .post('/api/v1/some/random/url/', $scope.form)

};

角度这么难吗?我是棱角分明的新手,所以我甚至无法理解我在网上找到的一些解决方案。

有什么方法更简单吗?可以为我执行此操作的插件或服务或指令吗?

0 个答案:

没有答案