- 浏览: 28348 次
- 来自: 济南
最新评论
-
花開有時:
get方式发送中文,前台需要encode两次
ajax 笔记 -
花開有時:
由于用ibatis操作数据库,<insert id=&q ...
oracle实现自动增加
文章列表
<action name="user" class="UserAction">
<result name="userinitsuccess">user/userlist.jsp</result>
<result name="newuserinitsuccess">user/newuser.jsp</result>
******** <result name="deleteusersuccess" type=&quo ...
struts2中的.action后缀,是在org.apache.struts2包下的deafult.properties文件中定义的,打开这个文件可以找到这样一行:struts.action.extension=action,,,就是这里定义的了。
有几种方法可以改变:
方法1:在classes目录下新建 struts.properties文件,添加一行struts.action.extension = do
方法2:在struts.xml中添加 <constant name="struts.action.extension" value="do" ...
1:浏览器的一个内置对象XmlhttpRequest向服务器发送请求,页面无刷新
2:用户触动事件处理函数——ajax对象起作用-----服务器处理----监听器监听ajax对象的状态-----成功后获取结果数据对页面处理
3:属性
onreadystatechange:注册一个监听器
readyState:返回对象与服务器的状态
0:对象已建立,尚未初始化(每调用open方法)
1:对象已建立,未调用send方法
2:send方法已经建立
3:数据传送中
4 ...