弹出 JSF 中的 URL

发布于 2024-12-01 16:31:23 字数 174 浏览 0 评论 0原文

我有以下场景 首先我需要向后端发送请求,这将返回一个 URL..我需要在 弹出窗口..我对此感到困惑,

我尝试使用 prime-faces 和 web flow 打开弹出窗口,但我不清楚如何在每次

使用 JSF、prime faces 和 spring webflow时使用新的 url 打开弹出窗口

i have following scenario
first i need to send request to back end,that will return a URL..i need to open the URL in the
popup.. i am confused for this

i have tried opening popup both using the prime-faces and web flow but i don't have clearly how to open popup using new url each time

we are using JSF, prime faces and spring webflow

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

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

发布评论

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

评论(1

小兔几 2024-12-08 16:31:23

使用 JavaScript 的 window.open 函数。

例如

<h:form>
    <h:commandButton value="Submit" action="#{bean.submit}">
        <f:ajax render="popup" />
    </h:commandButton>

    <h:panelGroup id="popup">
        <ui:fragment rendered="#{not empty bean.url}">
            <script>window.open('#{bean.url}');</script>
        </ui:fragment>
    </h:panelGroup>
</h:form>

private String url;

public void submit() {
    this.url = sendRequestToServiceAndRetrieveURL();
}

// ...

Use JavaScript's window.open function.

E.g.

<h:form>
    <h:commandButton value="Submit" action="#{bean.submit}">
        <f:ajax render="popup" />
    </h:commandButton>

    <h:panelGroup id="popup">
        <ui:fragment rendered="#{not empty bean.url}">
            <script>window.open('#{bean.url}');</script>
        </ui:fragment>
    </h:panelGroup>
</h:form>

with

private String url;

public void submit() {
    this.url = sendRequestToServiceAndRetrieveURL();
}

// ...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文