


The action with the namespace returns to the original page again, the error caused by the namespace_html/css_WEB-ITnose
Today I wrote a landing page. I believe this is not difficult for everyone, but as a silk girl, I made a mistake once!
The login page form is submitted. In the action, I added the namespace. The details are as follows:
<form id="loginForm" action="actionPackage/login.action" method="post"> ...此处省略...</form>
Login is fine. Problem, but the problem is that when my username or password is wrong, I should return to the login page. When I return, although the following method can be used to return to the specified html document
<package name="actionPackage" namespace="/actionPackage" extends="struts-default" > <action name="login" class="loginAction" method="execute"> <result name="success">/WEB-INF/index.html</result> <result name="error" >/login.html</result> </action> </package>
<script language="javascript" type="text/javascript" src="jquery-1.8.0.min.js" />
When logging in to submit the form, the actionPage namespace will be added to the URL. Then when returning to login.html, the URL will naturally include actionPage, causing the path to be obtained when getting the external js file. There is also an obvious space called actionPage in the file. Of course, this js external file cannot be obtained!
The url when logging in becomes http://localhost:8080/lfdcwtjxt/actionPage/login.action
When you return to the login page, the js acquisition path becomes http:/ /localhost:8080/lfdcwtjxt/actionPage/jquery-1.8.0,js
This is wrong, it should be http://localhost:8080/lfdcwtjxt/jquery-1.8.0,js
The solution is:
Use redirection to solve the problem: the configuration is as follows
<package name="actionPackage" namespace="/actionPackage" extends="struts-default" > <action name="login" class="loginAction" method="execute"> <result name="success">/WEB-INF/index.html</result> <result name="error" type="redirect">/login1</result> </action></package>
Redirect configuration:
<package name="default" namespace="/" extends="struts-default"> <action name="login1"> <result>/login.html</result> </action></package>
I don’t know if there is any other way, welcome to kick the floor!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit
