struts中关于form 的 action属性设置问题

在struts2中,<s:form>标签内是不支持<%=request.getContextPath() %>等包含特殊标记的内容。如果需要为其指定包含某个命名空间的action,则可以这样写:Administration.GoodsManage.addGoods.action

而在普通的<form>标签内,则可以使用<%=request.getContextPath() %>这样的绝对路径。如:action="<%=request.getContextPath()%>/platform/homePageSearch.action"

你可能感兴趣的:(struts)