如何在struts2中使用仅获取url中的参数部分标签?

发布于 2024-12-17 20:25:19 字数 84 浏览 1 评论 0原文

例如,我有一个 URL:/test.action?a=1&b=2 现在我想在jsp页面中使用只从URL中获取“a=1&b=2”,该怎么做?

For example, I have an URL: /test.action?a=1&b=2
Now I want in jsp page use to get only "a=1&b=2" out of the URL, how to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

君勿笑 2024-12-24 20:25:19

操作代码

public class MyAction extends ActionSupport {
    private String a;
     private String a;

    public String execute() throws Exception {
        // do something here
        return SUCCESS;
    }

    public String getA() {
        return a;
    }

    public void setA(final String a) {
        this.a= a;
    }

 public String getB() {
        return b;
    }

    public void setB(final String b) {
        this.a= a;
    }
}

使用 Struts 标签的

<s:property value="a"/>
<s:property value="b"/>

:我仍然不确定您的要求到底是什么,因为您的问题不是很清楚

Just a side note <s:url> This tag is used to create a URL

Action Code

public class MyAction extends ActionSupport {
    private String a;
     private String a;

    public String execute() throws Exception {
        // do something here
        return SUCCESS;
    }

    public String getA() {
        return a;
    }

    public void setA(final String a) {
        this.a= a;
    }

 public String getB() {
        return b;
    }

    public void setB(final String b) {
        this.a= a;
    }
}

Using Struts tags:

<s:property value="a"/>
<s:property value="b"/>

Still i am not sure what exactly is your requirement as its not very clear from your question

Just a side note <s:url> This tag is used to create a URL
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文