JSF AJax - 如何呈现 URL 的输出
我正在尝试使用 JSF / Ajax (a4j) 在同一页面中呈现 URL 的输出,但到目前为止我还没有运气。顺便说一句,我正在使用 RichFaces 4.0。例如,如果用户单击表中的一行(或只是一个按钮),我喜欢在表正下方显示一个与单击的行相关的网页。有没有办法可以使用 Backing Bean 获取相关 URL 并使用 A4J 标签调用该 URL?我搜索了这样的标签或示例代码,但到目前为止我找不到任何。
感谢您的帮助。
I am trying to render the output of an URL in the same page, using JSF / Ajax (a4j) and so far I am having no luck. BTW, I am using RichFaces 4.0. For example, if the User clicks a row in a Table (or just a button), I like to show a web page right below the Table, that is relevant to the row clicked. Is there a way I can get the relevant URL using a Backing Bean and invoke that URL using A4J Tags? I searched for such tags or sample code and so far I could not find any.
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将外部 URL 的结果嵌入到网页中只能借助 HTML
元素来巧妙地完成。
所以,这应该做
:
Embedding the result of an external URL in your webpage can only neatly be done with help of a HTML
<iframe>
element.So, this should do:
with