使用Uploadify时,您可以为图像指定一个文件夹(例如'folder':'/ uploads'),但是在MVC应用程序的控制器操作中,图像也会被保存!
我很困惑 - 它是Uplodify还是保存图像的控制器动作?
答案 0 :(得分:2)
LillyPop - Uploadify通过ajax将文件流发送到控制器操作,因此控制器操作(或操作调用的服务类)可以完成繁重的任务。你通常会在你的javascript方法中看到类似的东西:
<script type="text/javascript">
function initupLoadify() {
$("#fileInput").uploadify({
uploader: '<%=Url.Content("~/scripts/swf/uploadify.swf")%>',
script: '<%=Url.Content("~/en/PropertyDocument/Upload/")%>',
cancelImg: '<%=Url.Content("~/Content/cancel.png") %>',
auto: true,
sizeLimit: 5500000,
fileDataName: 'fileData',
scriptData: { 'propertyId': $("#PropertyID").val() },
buttonText: 'Add Document',
onComplete: function(event, queueID, fileObj, response) {
$("#msg").html(response);
return true;
},
onCancel: function(evt, queueID, fileObj, data) {
$("#msg").html("<br />Operation cancelled");
return true;
},
onOpen: function(evt, queueID, fileObj) {
$("#msg").html("<br />Upload in progress");
return true;
},
onError: function(event, queueID, fileObj, errorObj) {
$("#msg").html(fileObj.name + " was not uploaded ");
if (errorObj.status == 404)
$("#msg").html("Could not find upload script. Use a path relative to: " + "<?= getcwd() ?>");
else if (errorObj.type === "HTTP")
$("#msg").html("error " + errorObj.type + ": " + errorObj.status);
else if (errorObj.type === "File Size")
$("#msg").html(fileObj.name + " " + errorObj.type + " Limit: " + errorObj.info / 1000 + " KB");
else
$("#msg").html("error " + errorObj.type + ": " + errorObj.text);
}
});
};
</script>
部分script: '<%=Url.Content("~/en/PropertyDocument/Upload/")%>'
是定义控制器动作的地方。