我是靠谱客的博主 无情白昼,最近开发中收集的这篇文章主要介绍SSM框架下,Jsp页面提交请求及action获取值得问题,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

JSP代码:

<form id="formid" action="poiAction!insertMsg.do" method="post">
     <input type="file" id="filepath" name="filepath"/>
     <!-- <input type="hidden" id="filename" name="text"/> -->

</form>
    <input type="submit" value="上传" οnclick="insert()"/>
    <input type="button" value="下载">

<script type="text/javascript">


 function insert(){
  //获取选择文件的路径
  //var txt=document.getElementById("filename");
  //txt.value=document.getElementById("filepath").value;
  //alert(txt.value);
  //发送请求
  if(document.getElementById("filepath")!=null){
    document.forms[0].submit();
  }
 };
  </script>

一开始我想的是利用document.getElementById().value来获取路径,alert之后发觉是能获取到的。这里先不考虑不同浏览器的问题。

后来之所以没这样是因为,如果你用的是struts2的话,你这样获取再在action用request.getParameter("filepath");就像是Servlet的用法,根本没体现到Struts2的特点。

所以,直接一个form表单控件把input file标签套住,用document.forms[0].submit();提交

Action类如何获取?

只需要声明filepath(与你input标签的name对应),写个get/set方法就可以直接获取

代码如下:

private String filepath;
 
 public String getFilepath() {
  return filepath;
 }

 public void setFilepath(String filepath) {
  this.filepath = filepath;
 }
//filepath=ServletActionContext.getRequest().getParameter("filename");
  System.out.println(filepath);


最后

以上就是无情白昼为你收集整理的SSM框架下,Jsp页面提交请求及action获取值得问题的全部内容,希望文章能够帮你解决SSM框架下,Jsp页面提交请求及action获取值得问题所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部