gpt4 book ai didi

javascript - 该参数未检索上传文件的值

转载 作者:行者123 更新时间:2023-12-03 08:04:28 24 4
gpt4 key购买 nike

目标:
我希望在 jquery 代码的支持下将第二个输入名称“file2”自动上传到 actionresult。

问题:
它不起作用,因为 HttpPostedFileBase file2 为空。它应该包含基于上传文件并支持 jquery 的任何值。

信息:
我询问这种不寻常的方法是有目的的。

谢谢!

public ActionResult UploadShipments(HttpPostedFileBase file, HttpPostedFileBase file2)
{


---
}
<小时/>
<input name="file" type="file" accept=".xml, .txt" />

<input name="file2" type="file" accept=".xml, .txt" hidden />
<小时/>
$("#file1id").change(function (){
if($('#file2id').length){
$('#file2id').remove();
}
$(this).clone().attr('id', 'file2id').attr('type', 'hidden').insertAfter($(this));
});

https://jsfiddle.net/ayd4x079/

最佳答案

我认为你也必须添加 name 属性:

$(this).clone()
.attr({'id' : 'file2id',
'type' : 'hidden',
'name' : 'file2'})
.insertAfter($(this));

关于javascript - 该参数未检索上传文件的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34450116/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com