0

我有一个表格,我将动作 pf 设置为 /translate

<form name="frm" action="/translate">
...
</form>

并像这样在 struts-config.xml 中映射 /translate URL:

    <action-mappings>
    <action name="TranslatorBean" path="/translate" scope="request" type="com.myapp.struts.TranslateCtrl" validate="false">
        <forward name="success" path="/welcomeStruts.jsp"/>
    </action>
</action-mappings>

但是当我提交表单时,我收到 404 错误!!

4

1 回答 1

2

尝试

<form name="frm" action="/translate.do">

反而

问候

于 2012-07-30T15:06:59.860 回答