admin管理员组文章数量:1339799
Hopefully someone can help with this.
Basically, we are using ng-flow to allow for drag and drop to upload items. We are also using MVC 4.
All seems to be working as should, however, we would like to customize this, so that
- Items are dragged into the upload box and stored in scope (as it does now)
- Items are not physically uploaded until a button has been clicked
What have we tried so far? :-
in the config, we have disabled the target so that it doesn't upload immediately
.config(['flowFactoryProvider', function (flowFactoryProvider) {
flowFactoryProvider.defaults = {
target: '',
permanentErrors: [500, 501],
maxChunkRetries: 1,
chunkRetryInterval: 5000,
simultaneousUploads: 1
};
on the actual page, we have created a button, with an ng-click which will pass through the flow.files
<input type="button" value="Click Me" ng-click="uploadme($flow.files)">
in the controller, we have the function, uploadme, that accepts flows as a paramater. Looping through this paramater and post each "file" to the upload controller
$scope.uploadme= function (flows)
{
angular.forEach(flows, function (flow) {
var fd = new FormData();
fd.append("file", flow);
$http.post("upload", fd, {
withCredentials: true,
headers: {'Content-Type': undefined },
transformRequest: angular.identity
})
});
}
MVC controller, 'upload'. this get called, however, file is always null
public ActionResult upload(HttpPostedFileBase file)
{
if (file.ContentLength > 0)
{
var fileName = Path.GetFileName(file.FileName);
var path = Path.Combine(Server.MapPath("~/App_Data/uploads"), fileName);
file.SaveAs(path);
}
return View();
}
Is there something that we are missing? or is there a different way to achieve this.
Hopefully someone can help with this.
Basically, we are using ng-flow https://github./flowjs/ng-flow to allow for drag and drop to upload items. We are also using MVC 4.
All seems to be working as should, however, we would like to customize this, so that
- Items are dragged into the upload box and stored in scope (as it does now)
- Items are not physically uploaded until a button has been clicked
What have we tried so far? :-
in the config, we have disabled the target so that it doesn't upload immediately
.config(['flowFactoryProvider', function (flowFactoryProvider) {
flowFactoryProvider.defaults = {
target: '',
permanentErrors: [500, 501],
maxChunkRetries: 1,
chunkRetryInterval: 5000,
simultaneousUploads: 1
};
on the actual page, we have created a button, with an ng-click which will pass through the flow.files
<input type="button" value="Click Me" ng-click="uploadme($flow.files)">
in the controller, we have the function, uploadme, that accepts flows as a paramater. Looping through this paramater and post each "file" to the upload controller
$scope.uploadme= function (flows)
{
angular.forEach(flows, function (flow) {
var fd = new FormData();
fd.append("file", flow);
$http.post("upload", fd, {
withCredentials: true,
headers: {'Content-Type': undefined },
transformRequest: angular.identity
})
});
}
MVC controller, 'upload'. this get called, however, file is always null
public ActionResult upload(HttpPostedFileBase file)
{
if (file.ContentLength > 0)
{
var fileName = Path.GetFileName(file.FileName);
var path = Path.Combine(Server.MapPath("~/App_Data/uploads"), fileName);
file.SaveAs(path);
}
return View();
}
Is there something that we are missing? or is there a different way to achieve this.
Share Improve this question edited Jun 15, 2015 at 9:04 John Saunders 162k26 gold badges252 silver badges402 bronze badges asked Sep 9, 2014 at 8:39 SimonSimon 1,4764 gold badges21 silver badges50 bronze badges 2- I'm looking for a similar answer. It's a bit frustrating because the "basic" demo from the ng-flow github repo does exactly this even though it's done exactly the same way as my implementation. My version uploads the files immediately when they are dropped while theirs hold them until the button is clicked. Did you ever solve this? – Askdesigners Commented Oct 14, 2014 at 11:30
- @Askdesigners hi, yes resolved, please see answer, hope that helps. – Simon Commented Oct 14, 2014 at 13:07
2 Answers
Reset to default 10managed to resolve this...
remove the line from div tag
flow-files-submitted="$flow.upload()"
then onclick of a button, pass in $flow in as a paramater
ng-click="InsertItems($flow)"
Javascript:-
$scope.InsertItems = function(e)
{
//Do what you need to do
e.upload();
}
I only want to add a reference to a nice answer to this question: Ng-flow upload programmatically
Hope it helps.
本文标签: javascriptflowjs upload file on clickStack Overflow
版权声明:本文标题:javascript - flow.js upload file on click - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743601999a2508729.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论