struts2 ajax无法用 5

在使用struts时出现下面的情况,然后ajax并没有成功显示,Action中代码没有出错误呀。这是什么原因,我没有豆子啦,感谢哪位回答解救<%@pagecontentT... 在使用struts时出现下面的情况,然后ajax并没有成功显示,Action中代码没有出错误呀。这是什么原因,我没有豆子啦,感谢哪位回答解救

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@taglib prefix="s" uri="/struts-tags"%>
<%@taglib prefix="sx" uri="/struts-dojo-tags"%>
<html>
<head>
<sx:head />
</head>
<body>
<s:url id="getDate" value="getDate.action"/>
<hr/>
1.只在页面加载时获取数据
<sx:div id="noUpdateFreq" theme="ajax" href="%{getDate}"></sx:div>
<hr/>
2.每2秒钟更新一次数据
<sx:div id="updateFreq" theme="ajax" href="%{getDate}" updateFreq="2000"></sx:div>
<hr/>
3.每6秒钟更新一次数据,但是延迟2秒钟
<sx:div id="delay" theme="ajax" href="%{getDate}" updateFreq="6000" delay="2000"></sx:div>
<hr/>
</body>
</html>
展开
 我来答
超级帅2014
2015-07-27 · TA获得超过303个赞
知道大有可为答主
回答量:1077
采纳率:0%
帮助的人:835万
展开全部
首先,struts2进行权限验证是用拦截器做的
一个简单的登录拦截器示例如下:
package com.zdf.interceptor;

import com.opensymphony.xwork2.Action;
import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.interceptor.AbstractInterceptor;
import com.zdf.entity.Admin;

@SuppressWarnings("serial")
public class LoginInterceptor extends AbstractInterceptor{

@Override
public String intercept(ActionInvocation invocation) throws Exception {
// TODO Auto-generated method stub
Admin admin = (Admin)invocation.getInvocationContext().getSession().get("ADMIN");
if(admin!=null){
return invocation.invoke();
}else{
return Action.LOGIN;
}
}

}
追问
这个ajax有什么关系呀?
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式