189 8069 5689

Struts2中的Ajax开发方法是什么

本篇内容介绍了“Struts2中的Ajax开发方法是什么”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

在鹿寨等地区,都构建了全面的区域性战略布局,加强发展的系统性、市场前瞻性、产品创新能力,以专注、极致的服务理念,为客户提供网站制作、网站建设 网站设计制作按需策划,公司网站建设,企业网站建设,成都品牌网站建设,成都全网营销,外贸网站建设,鹿寨网站建设费用合理。

首先不谈Struts2的原生支持,我们自己写一个ajax示例,使用异步请求,直接请求action动作:

InfoAction.java

packagecn.codeplus.action;importcom.opensymphony.xwork2.ActionSupport;  publicclassInfoAction extendsActionSupport {privatestaticfinallongserialVersionUID =1359090410097337654L;  publicString loadInfo() {returnSUCCESS;  }  }

InfoAction仅仅是简单的返回"success"。

index.jsp

  "> 获取    functionloadInfo() {  $("#info").load("loadInfo");  }    
  

index.jsp包含一个按钮,点击按钮则会触发异步请求事件。

struts.xml

  /info.jsp  

可见上面的异步请求的结果将会是加载info.jsp,info.jsp只是一个简单网页,不列出了。

运行效果如下:

Struts2中的Ajax开发方法是什么

单击获取之后:

Struts2中的Ajax开发方法是什么

此时的页面源代码:

Struts2中的Ajax开发方法是什么

标签中嵌套了标签,不符合规范,其实我们只要吧info.jsp写的没有<title>之类的标签,就不会出现这种情况了。</p><p>以上说的异步请求仅适用于请求单个文件,如果我们请求的是动态数据,并且数据需要以JSON格式返回,上面的方法将会显得力不从心,这是struts2的原生支持就得出马了。</p><p>使用struts2的ajax,必须在项目中引入struts2-json-plugin-2.2.1.jar,在版本2.1.7+都一句绑定在struts2发行包里面了(之前的版本可以在这下载)。记住,要引入struts2-json-plugin-2.2.1.jar。</p><p>这次我们使用另一个例子,模拟加载评论:</p><p>dto对象,Comment.java</p><pre>packagecn.codeplus.po;  publicclassComment {  privatelongid;privateString nickname;privateString content;publiclonggetId() {returnid;  }  publicvoidsetId(longid) {this.id =id;  }  publicString getNickname() {returnnickname;  }  publicvoidsetNickname(String nickname) {this.nickname =nickname;   }  publicString getContent() {returncontent;  }  publicvoidsetContent(String content) {this.content =content;  }  }</pre><p>新的InfoAction.java </p><pre>packagecn.codeplus.action;  importjava.util.ArrayList;importjava.util.List;  importcn.codeplus.po.Comment;  importcom.opensymphony.xwork2.ActionSupport;  publicclassInfoAction extendsActionSupport {  privatestaticfinallongserialVersionUID =1359090410097337654L;  privateList<Comment>comments =newArrayList<Comment>();//没getter and setter方法的属性不会被串行化到JSON  @SuppressWarnings("unused")  privateString title;//!!!使用transient修饰的属性也会被串行化到JSONprivatetransientString content;publicString loadInfo() {  title="123木头人";  content="你是木头人,哈哈。";  loadComments();returnSUCCESS;  }/*** 加载留言信息*/  privatevoidloadComments() {  Comment com1 =newComment();  com1.setContent("很不错嘛");  com1.setId(1);  com1.setNickname("纳尼");  Comment com2 =newComment();  com2.setContent("哟西哟西");  com2.setId(2);  com2.setNickname("小强");  comments.add(com1);  comments.add(com2);  }publicList<Comment>getComments() {returncomments;  }publicvoidsetComments(List<Comment>comments) {this.comments =comments;  }publicstaticlonggetSerialversionuid() {returnserialVersionUID;  }publicString getContent() {returncontent;  }publicvoidsetContent(String content) {this.content =content;  }  }  index.jsp还是那个index.jsp。(*^__^*) 嘻嘻……  struts.xml变化挺大:  <package name="ajaxDemo"extends="json-default"> <action name="loadInfo"class="cn.codeplus.action.InfoAction"method="loadInfo"> <result name="success"type="json"></result> </action> </package></pre><p>在struts.xml中:</p><p>首先,package extends由struts-default转变为json-default,这是必须的,只用在json-default中才包含下面使用的result type为 json。</p><p>然后就是result类型需显示指明为json,result标签内,无需指明视图指向的界面。</p><p>***就是运行结果啦:</p><p>点击“获取”按钮之后:</p><p><img src="/upload/otherpic72/461490.jpg" alt="Struts2中的Ajax开发方法是什么"></p><p>可见comments对象和content对象都被串行化到JSON数据了,不知道是不是版本的问题,很多资料都说使用transient修饰的属性不会被串行化到JSON的。</p><p>为了使content对象不被串行化到JSON,在不能舍弃其getter setter方法的时候,我们可以这样在content的getter方法上面加上注解:@JSON(serialize=false)</p><pre>...  @JSON(serialize=false)publicString getContent() {returncontent;  }publicvoidsetContent(String content) {this.content =content;  }  ...</pre><p>这时的结果如下:</p><p><img src="/upload/otherpic72/461492.jpg" alt="Struts2中的Ajax开发方法是什么"></p><p>@JSON和json类型的result都还有很多可选项,无非就是串行化谁,不串行化谁,返回数据的MIME类型,读者可以自行参考相关文档。</p><p>“Struts2中的Ajax开发方法是什么”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注创新互联网站,小编将为大家输出更多高质量的实用文章!</p> <br> 分享名称:Struts2中的Ajax开发方法是什么 <br> 新闻来源:<a href="http://cdxtjz.cn/article/pejegd.html">http://cdxtjz.cn/article/pejegd.html</a> </div> </div> <div class="other"> <h3>其他资讯</h3> <ul> <li> <a href="/article/esoeeg.html">企业抖音代运营培训</a> </li><li> <a href="/article/esoidg.html">武汉短视频运营基地</a> </li><li> <a href="/article/esoidc.html">大竹餐饮抖音运营培训班如何利用短视频来吸引顾客</a> </li><li> <a href="/article/esoehp.html">中式别墅抖音代运营方法</a> </li><li> <a href="/article/esoioh.html">抖音短视频怎么做好运营,教你如何创作爆款视频标题</a> </li> </ul> </div> </div> <footer> <div class="foot container"> <div class="footl fl"> <h3>联系我们</h3> <dl> 您好HELLO!<br> 感谢您来到成都网站建设公司,若您有合作意向,请您为我们留言或使用以下方式联系我们, 我们将尽快给你回复,并为您提供真诚的设计服务,谢谢。 </dl> <ul> <li>电话:028- <span>86922220 18980695689</span></li> <li>商务合作邮箱:631063699@qq.com</li> <li>合作QQ: 532337155</li> <li>成都网站设计地址:成都市青羊区锣锅巷31号五金站写字楼6楼</li> </ul> </div> <div class="footr fr"> <h3>小谭建站工作室</h3> <dl> 成都小谭网站建设公司拥有多年以上互联网从业经验的团队,始终保持务实的风格,以"帮助客户成功"为已任,专注于提供对客户有价值的服务。 我们已为众企业及上市公司提供专业的网站建设服务。我们不只是一家网站建设的网络公司;我们对营销、技术、管理都有自己独特见解,小谭建站采取“创意+综合+营销”一体化的方式为您提供更专业的服务! </dl> <h3>小谭观点</h3> <dl> 相对传统的成都网站建设公司而言,小谭是互联网中的网站品牌策划,我们精于企业品牌与互联网相结合的整体战略服务。<br> 我们始终认为,网站必须注入企业基因,真正使网站成为企业vi的一部分,让整个网站品牌策划体系变的深入而持久。 </dl> </div> </div> <div class="link"> <div class="container"> <span> 友情链接:</span> <a href="https://www.cdxwcx.com/tuiguang/" title="成都SEO优化" target="_blank">成都SEO优化</a>   <a href="http://m.xwcx.net/wechat/" title="成都微信二次开发" target="_blank">成都微信二次开发</a>   <a href="https://www.cdxwcx.com/jifang/wenjiang.html" title="温江服务器托管" target="_blank">温江服务器托管</a>   <a href="http://chengdu.cdcxhl.cn/jianshe/" title="网站建设公司" target="_blank">网站建设公司</a>   <a href="https://www.cdxwcx.com/city/guangan/" title="广安网站建设" target="_blank">广安网站建设</a>   <a href="http://www.kswsj.com/" title="成都网站建设" target="_blank">成都网站建设</a>   <a href="https://www.cdxwcx.com/jifang/zongshu.html" title="棕树数据中心" target="_blank">棕树数据中心</a>   <a href="http://m.cdxwcx.com/" title="成都网站建设" target="_blank">成都网站建设</a>   <a href="http://www.cdfuwuqi.com/" title="成都托管服务器" target="_blank">成都托管服务器</a>   <a href="http://www.cdkjz.cn/fangan/waimao/" title="外贸网站设计方案" target="_blank">外贸网站设计方案</a>    </div> </div> <div class="copy"> © Copyright 2023 <a href="http://www.cdxtjz.cn/">小谭建站工作室</a>All Rights Reserved.  <a href="http://beian.miit.gov.cn" target="_blank" rel="nofollow">蜀ICP备2021004003号-2</a>  <a href="https://www.cdxwcx.com" target="_blank">成都网站建设</a> / <a href="https://www.cdxwcx.com" target="_blank">成都网站建设</a> / <a href="https://www.cdxwcx.com" target="_blank">响应式网站建设</a> / <a href="https://www.cdxwcx.com target=" _blank"="">定制网站建设</a>  <a href="sitemap.xml" target="_blank">xml</a> <a href="sitemap.html" target="_blank">网站地图</a> </div> </footer> </body> </html> <script> $(".con img").each(function(){ var src = $(this).attr("src"); //获取图片地址 var str=new RegExp("http"); var result=str.test(src); if(result==false){ var url = "https://www.cdcxhl.com"+src; //绝对路径 $(this).attr("src",url); } }); window.onload=function(){ document.oncontextmenu=function(){ return false; } } </script>