Tag: formidable

如何以多方forms接收json对象和文件?

我试图build立一个张贴用户名,密码和个人资料图片的angularJS页面。 我正在使用一个自定义fileUpload指令,然后发送这两个字段和文件作为多部分forms的请求。 在服务器端,我可以使用多方获取文件,但字段数据显示为{[对象对象]},我无法得到它。 试过JSON.stringify,但也不起作用。 这是我的代码: 视图 <form ng-submit="submitForm(user)"> <input type="text" ng-model="user.username" placeholder="user name"> <input type="text" ng-model="user.age" placeholder="age"> <input type="password" ng-model="user.password" placeholder="password"> <input type="file" file-upload multiple/> <input type="submit" class="btn btn-danger">Send</button> </form> angular度控制器代码: var app = angular.module('testphoto', []); app.directive('fileUpload', function () { return { scope: true, link: function (scope, el, attrs) { el.bind('change', function (event) { var […]