struts2 表单提交
<%@pagepageEncoding="GB18030"%><h1>登陆</h1><fromaction="login.action"method="post">姓名:...
<%@ page pageEncoding="GB18030"%>
<h1>登陆</h1>
<from action="login.action" method="post">
姓名:<input type="text" name="username"><br>
密码:<input type="text" name="password"><br>
<input type="submit" value="点击登录">
</from>
package triman.action;
public class LoginAction {
private String username;
private String password;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String execute(){
if(username.trim().equalsIgnoreCase("wsxd") && password.equals("dddddd")){
return "loginsuc";
} else{
return "loginfail";
}
}
}
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="loginTest" extends="struts2-default">
<action name="login" class="triman.action.LoginAction" >
<result name="loginsuc">/loginsuc.jsp</result>
<result name="loginfail">/loginfail.jsp</result>
</action>
</package>
</struts>
<%@ page pageEncoding="GB18030"%>
<h1>欢迎,光临</h1>
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
为什么点击登入按钮的时候没反应,麻烦大家给看看...谢谢! 展开
<h1>登陆</h1>
<from action="login.action" method="post">
姓名:<input type="text" name="username"><br>
密码:<input type="text" name="password"><br>
<input type="submit" value="点击登录">
</from>
package triman.action;
public class LoginAction {
private String username;
private String password;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String execute(){
if(username.trim().equalsIgnoreCase("wsxd") && password.equals("dddddd")){
return "loginsuc";
} else{
return "loginfail";
}
}
}
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="loginTest" extends="struts2-default">
<action name="login" class="triman.action.LoginAction" >
<result name="loginsuc">/loginsuc.jsp</result>
<result name="loginfail">/loginfail.jsp</result>
</action>
</package>
</struts>
<%@ page pageEncoding="GB18030"%>
<h1>欢迎,光临</h1>
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
为什么点击登入按钮的时候没反应,麻烦大家给看看...谢谢! 展开
4个回答
展开全部
<form action="login.action" method="post">
姓名:<input type="text" name="username"><br>
密码:<input type="text" name="password"><br>
<input type="submit" value="点击登录">
</form>
表单写错了 是form不是from 点击按钮没反应 不是submit写错 就是 form写错了 再就死浏览器的关系 后者可能性不大
姓名:<input type="text" name="username"><br>
密码:<input type="text" name="password"><br>
<input type="submit" value="点击登录">
</form>
表单写错了 是form不是from 点击按钮没反应 不是submit写错 就是 form写错了 再就死浏览器的关系 后者可能性不大
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
看到一个很明显的问题LoginAction为什么没有继承ActionSupport,不继承ActionSupport怎么让struts2帮你做事那?
public class LoginAction extends ActionSupport
加上后在试试吧
form也写错了
public class LoginAction extends ActionSupport
加上后在试试吧
form也写错了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个问题<result name="loginsuc">/loginsuc.jsp</result>
<result name="loginfail">/loginfail.jsp</result>
出现了不在这里的结果,所以没有反应,这个问题是初学的时候常常都要犯的
<result name="loginfail">/loginfail.jsp</result>
出现了不在这里的结果,所以没有反应,这个问题是初学的时候常常都要犯的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<form>拼错了...
你写成<from>了。
你写成<from>了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询