我无法在我的 meanjs 应用上上传图片,我不知道为什么,但我无法通过帖子来表达。
我遵循了这个示例: 使用 Angular-file-upload 向 MEAN.JS 示例添加图片
但是我的角度服务使用 $resource 发布帖子,例如:
'use strict';
angular.module('eventos').factory('Eventos', ['$resource',
function($resource){
return $resource('events/eventId', {eventId:'@_id'
},{
update:{
method:'PUT'
}
});
}
]);
还有其他方法吗?
我试图找到示例或教程,但没有,你能帮忙吗?
谢谢 ;)