我已经编写了一个代码,用于使用 jquery-ajax 从文件浏览器中选择文件将文件从 jsp 上传到 mysql 数据库。在选择文件时,JavaScript 将文件和 id 作为参数传递给动作类,但我在动作类中得到文件的空值。
谁能告诉我如何解决这个问题。
索引.jsp
<%@taglib uri="/struts-tags" prefix="s"%>
<html>
<head>
<script src="js/jquery-1.7.2.min.js"></script>
<script src="js/jquery-ui-1.8.21.custom.min.js"></script>
<script>
function filebrowse(toolid){
document.getElementById("toolidforimg").value=toolid;
$("#filetochange").trigger('click');
return false;
}
function changeFile(var3)
{
var param="filetochange="+(document.getElementById("filetochange").value)+"&toolidforimg="+document.getElementById("toolidforimg").value;
var resultStringX = $.ajax({
type: "POST",
url:"getFileChange.action",
enctype: 'multipart/form-data',
data: param,
async: false
}).responseText;
resultStringX=$.trim(resultStringX);
return false;
}
</script>
</head>
<body>
<s:hidden value="" name="toolidforimg" id="toolidforimg"/>
<a href="#" onclick="return filebrowse('1')" id="select_logo">Change File</a>
<input style="opacity:0;" type="file" onchange="changeFile(this.value)" id="filetochange" name="filetochange" >
</body>
</html>
struts.xml
<action name="getFileChange" class="com.MyactionClass" method="getFileChange">
<result name="success">browseFiles.jsp</result>
</action>
MyactionClass.java
class MyactionClass
{
File filetockhange;
String toolidforimg;
public File getFiletochange() {
return filetochange;
}
public void setFiletochange(File filetochange) {
this.filetochange = filetochange;
}
public String getToolidforimg() {
return toolidforimg;
}
public void setToolidforimg(String toolidforimg) {
this.toolidforimg = toolidforimg;
}
public String getFileChange()
{
HERE I AM GETTING filetochange VALUE AS NULL
return SUCCESS;
}
}