JSF 延迟组件的渲染

发布于 2024-10-20 09:06:52 字数 151 浏览 2 评论 0原文

我正在使用 JSF/2.0 和 vanilla Mojarra。

我在屏幕上加载了一个客户端列表,屏幕加载 10 秒后,我想在每个客户端名称旁边放置一个单独的美元值。

我正在考虑扩展现有的 JSF 组件来执行此操作。最好的方法是什么?

杰格

I'm using JSF/2.0 with vanilla Mojarra.

I've got a list table of clients loading up on a screen, and 10 seconds after the screen loads, I want to put an individual dollar value next to each client name.

I'm thinking of extending an existing JSF component to do this. What's the best way to do this?

JG

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

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

发布评论

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

评论(1

心是晴朗的。 2024-10-27 09:06:52

该调用必须来自客户端,因为标准 HTTP 协议不允许服务器端将内容推送到客户端。从 JavaScript 的 setTimeout() 函数开始。

<script>setTimeout(functionName, 10000);</script>

您可以使用纯 JS(甚至 jQuery)来进行更改。如果需要调用 JSF 操作,请调用 jsf.ajax.request() 函数。

The call has to come from the client side since the standard HTTP protocol doesn't allow the server side to push stuff to the client side. Start with JavaScript's setTimeout() function.

<script>setTimeout(functionName, 10000);</script>

You could use plain JS (or even jQuery) to do the changes. If you need to invoke a JSF action, call the jsf.ajax.request() function.

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