有没有办法在自定义按钮单击之前上传文件,然后使用 ajax 将其发送到控制器操作方法?
Is there a way to upload file before custom button click,and then using ajax send it to controller action method?
我对 Telerik 很陌生 Html Kendo。我的目标是先上传一个文件。然后,通过ajax在'Administration'控制器中调用相应的动作方法,点击'Submit'按钮时应该带上上传的文件和其他参数,如下图所示。
大多数 Telerik 示例都展示了调用控制器方法上传文件的异步上传功能。我不想这样做。
但是,我尝试使用 kendo 上传的 onSelect 事件上传文件。它显示文件已包含但未上传。
因此,我无法看到任何信息。关于 onSuccess 和 onComplete 事件中的上传文件。
我在 'Submit' 按钮点击时使用了 formData。但是我一直在操作方法中收到 null。
有什么正确的方法吗?
这是我的 html 文件上传代码:
<div class="well well-sm" style="width:inherit;text-align: center;float:left;">
<!--form method="post"-->
<!--div class="demo-section k-content">
<input name="files" id="files" type="file" value="Upload a Data File"/>
</div-->
<!--/form-->
@(Html.Kendo().Upload()
.Name("files")
.Multiple(false)
.Messages(m => m.Select("Please upload a Data File"))
.HtmlAttributes(new { aria_label = "file" })
.Events(events => events
.Complete("onComplete")
.Select("onSelect")
.Success("onSuccess")
.Upload("onUpload")
.Progress("onProgress"))
//.Async(a=>a.AutoUpload(false))
.Validation(v => v.AllowedExtensions(new string[] { ".csv", ".xls", ".xlsx", ".txt" }))
)
</div>
这是我要调用的所有 js 事件的 javascript 代码。
<script>
var _files;
function onSelect(e) {
var files = e.files;
alert(files[0].name);
_files = files[0];
//file = files[0].name;
var acceptedFiles = [".xlsx", ".xls", ".txt", ".csv"]
var isAcceptedFormat = ($.inArray(files[0].extension, acceptedFiles)) != -1
if (!isAcceptedFormat) {
e.preventDefault();
$("#meter_addt_details").addClass("k-state-disabled");
//$("#submit_btn").addClass("k-state-disabled");
document.getElementById("submit_btn").disabled = true;
alert("Please upload correct file. Valid extensions are xls, xlsx,txt,csv");
}
else {
/* Here I tried to upload file didn't work out */
$("#meter_addt_details").removeClass("k-state-disabled");
// $("#submit_btn").removeClass("k-state-disabled");
document.getElementById("submit_btn").disabled = false;
@*
$("#files").kendoUpload({
async: {
saveUrl: '@Url.Action("ReadMeterFile","Administration")',
autoUpload: false
}
}); *@
$("#files").kendoUpload();
//$(".k-upload-selected").click();
@*var upload = $("#files").data("kendoUpload");
upload.upload(); *@
}
}
@*
function onUpload(e) {
$(".k-upload-selected").trigger('click');
//console.log("Upload :: " + getFileInfo(e));
}
function onSuccess(e) {
console.log(files[0].name);
_files = e.files[0];
}
function onProgress(e) {
console.log("Upload progress :: " + e.percentComplete);
}
function onComplete(e) {
console.log("Complete");
}
function onSubmitButtonClick(e) {
var formData = new FormData();
alert(_files.name);
formData.append('files', _files);
formData.append('order_num', $("#order").val());
formData.append('purchase_order', $("#purchase_order").val());
$.ajax({
url: '@Url.Action("ReadFile","Administration")',
data: formData,
type: 'POST',
processData: false,
contentType: false,
dataType: "json",
success: function (data) {
alert("Good");
}
});
}
</script>
这是我的控制器:
public ActionResult ReadFile(IEnumerable<HttpPostedFileBase> files,string order_num, string purchase_order)
{
System.Diagnostics.Debug.WriteLine("File length:"+files.ToList().Capacity);
foreach(var f in files)
{
System.Diagnostics.Debug.WriteLine(f.FileName);
var fileName = Path.GetFileName(f.FileName);
var destinationPath = Path.Combine(Server.MapPath("~/App_Data"), fileName);
f.SaveAs(destinationPath);
}
//System.Diagnostics.Debug.WriteLine(file);
/*
System.Diagnostics.Debug.WriteLine("File:"+files);
System.Diagnostics.Debug.WriteLine("Order:"+order_num);
System.Diagnostics.Debug.WriteLine("Purchase Order:"+purchase_order);
return Content("");
}
这是我之前用于从 kendo 上传小部件手动上传的一些代码。从你的问题来看,我认为你正在寻找的是在控制器端正确获取信息的方法。但是,我将添加我使用过的代码,这应该可以帮助您。 (我的代码上传一个PDF)
@(Html.Kendo().Upload()
.Name("pdf-file")
.Multiple(false)
.Validation(v => v.AllowedExtensions(new string[] { "pdf" }))
.Events(ev => ev.Select("pdfSelected"))
)
function pdfSelected(e) {
if (e.files != null && e.files.length > 0 && e.files[0] != null) {
var file = e.files[0];
if (file.validationErrors != null && file.validationErrors.length > 0) {
return; //These errors will show in the UI
}
var formData = new FormData();
formData.append('PdfFile', file.rawFile);
formData.append('AdditionalValue', 'Some String');
$.ajax({
type: 'post',
url: '[SOMEURL]',
data: formData,
dataType: 'json',
contentType: false,
processData: false,
success: pdfUploaded
});
}
}
function pdfUploaded(data) {
//Whatever you want.
}
pdfSelected 内部是实际发布文件的代码。如果您想通过提交按钮与其他属性同时完成所有操作。然后而不是在那里执行上传。除了对上传进行验证之外什么也不做,或者不执行 pdfSelected 并等到单击提交以执行验证(可能更好)。然后在你的按钮上点击
//Or course check files.length to avoid errors. Not added to keep it short
var files = $('#pdf-file').data('kendoUpload').getFiles();
var file = files[0];
从 "var formData = new FormData();" 开始,上面的代码中的所有内容都保持不变。这是控制器代码。
public ActionResult MyAction() {
string additionalValue = (string) this.Request.Form["AdditionalValue"];
HttpPostedFileBase file = this.Request.Files["PdfFile"];
//Do whatever you need to with them.
}
文件的 rawFile 属性 是您需要的,而不仅仅是文件对象,因为它是 kendo 特定的。
我对 Telerik 很陌生 Html Kendo。我的目标是先上传一个文件。然后,通过ajax在'Administration'控制器中调用相应的动作方法,点击'Submit'按钮时应该带上上传的文件和其他参数,如下图所示。
大多数 Telerik 示例都展示了调用控制器方法上传文件的异步上传功能。我不想这样做。
但是,我尝试使用 kendo 上传的 onSelect 事件上传文件。它显示文件已包含但未上传。
因此,我无法看到任何信息。关于 onSuccess 和 onComplete 事件中的上传文件。 我在 'Submit' 按钮点击时使用了 formData。但是我一直在操作方法中收到 null。
有什么正确的方法吗?
这是我的 html 文件上传代码:
<div class="well well-sm" style="width:inherit;text-align: center;float:left;">
<!--form method="post"-->
<!--div class="demo-section k-content">
<input name="files" id="files" type="file" value="Upload a Data File"/>
</div-->
<!--/form-->
@(Html.Kendo().Upload()
.Name("files")
.Multiple(false)
.Messages(m => m.Select("Please upload a Data File"))
.HtmlAttributes(new { aria_label = "file" })
.Events(events => events
.Complete("onComplete")
.Select("onSelect")
.Success("onSuccess")
.Upload("onUpload")
.Progress("onProgress"))
//.Async(a=>a.AutoUpload(false))
.Validation(v => v.AllowedExtensions(new string[] { ".csv", ".xls", ".xlsx", ".txt" }))
)
</div>
这是我要调用的所有 js 事件的 javascript 代码。
<script>
var _files;
function onSelect(e) {
var files = e.files;
alert(files[0].name);
_files = files[0];
//file = files[0].name;
var acceptedFiles = [".xlsx", ".xls", ".txt", ".csv"]
var isAcceptedFormat = ($.inArray(files[0].extension, acceptedFiles)) != -1
if (!isAcceptedFormat) {
e.preventDefault();
$("#meter_addt_details").addClass("k-state-disabled");
//$("#submit_btn").addClass("k-state-disabled");
document.getElementById("submit_btn").disabled = true;
alert("Please upload correct file. Valid extensions are xls, xlsx,txt,csv");
}
else {
/* Here I tried to upload file didn't work out */
$("#meter_addt_details").removeClass("k-state-disabled");
// $("#submit_btn").removeClass("k-state-disabled");
document.getElementById("submit_btn").disabled = false;
@*
$("#files").kendoUpload({
async: {
saveUrl: '@Url.Action("ReadMeterFile","Administration")',
autoUpload: false
}
}); *@
$("#files").kendoUpload();
//$(".k-upload-selected").click();
@*var upload = $("#files").data("kendoUpload");
upload.upload(); *@
}
}
@*
function onUpload(e) {
$(".k-upload-selected").trigger('click');
//console.log("Upload :: " + getFileInfo(e));
}
function onSuccess(e) {
console.log(files[0].name);
_files = e.files[0];
}
function onProgress(e) {
console.log("Upload progress :: " + e.percentComplete);
}
function onComplete(e) {
console.log("Complete");
}
function onSubmitButtonClick(e) {
var formData = new FormData();
alert(_files.name);
formData.append('files', _files);
formData.append('order_num', $("#order").val());
formData.append('purchase_order', $("#purchase_order").val());
$.ajax({
url: '@Url.Action("ReadFile","Administration")',
data: formData,
type: 'POST',
processData: false,
contentType: false,
dataType: "json",
success: function (data) {
alert("Good");
}
});
}
</script>
这是我的控制器:
public ActionResult ReadFile(IEnumerable<HttpPostedFileBase> files,string order_num, string purchase_order)
{
System.Diagnostics.Debug.WriteLine("File length:"+files.ToList().Capacity);
foreach(var f in files)
{
System.Diagnostics.Debug.WriteLine(f.FileName);
var fileName = Path.GetFileName(f.FileName);
var destinationPath = Path.Combine(Server.MapPath("~/App_Data"), fileName);
f.SaveAs(destinationPath);
}
//System.Diagnostics.Debug.WriteLine(file);
/*
System.Diagnostics.Debug.WriteLine("File:"+files);
System.Diagnostics.Debug.WriteLine("Order:"+order_num);
System.Diagnostics.Debug.WriteLine("Purchase Order:"+purchase_order);
return Content("");
}
这是我之前用于从 kendo 上传小部件手动上传的一些代码。从你的问题来看,我认为你正在寻找的是在控制器端正确获取信息的方法。但是,我将添加我使用过的代码,这应该可以帮助您。 (我的代码上传一个PDF)
@(Html.Kendo().Upload()
.Name("pdf-file")
.Multiple(false)
.Validation(v => v.AllowedExtensions(new string[] { "pdf" }))
.Events(ev => ev.Select("pdfSelected"))
)
function pdfSelected(e) {
if (e.files != null && e.files.length > 0 && e.files[0] != null) {
var file = e.files[0];
if (file.validationErrors != null && file.validationErrors.length > 0) {
return; //These errors will show in the UI
}
var formData = new FormData();
formData.append('PdfFile', file.rawFile);
formData.append('AdditionalValue', 'Some String');
$.ajax({
type: 'post',
url: '[SOMEURL]',
data: formData,
dataType: 'json',
contentType: false,
processData: false,
success: pdfUploaded
});
}
}
function pdfUploaded(data) {
//Whatever you want.
}
pdfSelected 内部是实际发布文件的代码。如果您想通过提交按钮与其他属性同时完成所有操作。然后而不是在那里执行上传。除了对上传进行验证之外什么也不做,或者不执行 pdfSelected 并等到单击提交以执行验证(可能更好)。然后在你的按钮上点击
//Or course check files.length to avoid errors. Not added to keep it short
var files = $('#pdf-file').data('kendoUpload').getFiles();
var file = files[0];
从 "var formData = new FormData();" 开始,上面的代码中的所有内容都保持不变。这是控制器代码。
public ActionResult MyAction() {
string additionalValue = (string) this.Request.Form["AdditionalValue"];
HttpPostedFileBase file = this.Request.Files["PdfFile"];
//Do whatever you need to with them.
}
文件的 rawFile 属性 是您需要的,而不仅仅是文件对象,因为它是 kendo 特定的。