如何在liferay中通过代码动态添加iframe
我有一个场景,在 liferay 中创建的用户将被分配工具(以 iframe 的形式)。 每个用户的 iframe 数量都会有所不同,当用户登录时,他的公共页面中应该会自动出现这么多数量的 iframe。
我怎样才能做到这一点?有没有办法可以将其保存在公共页面的首选项中(对于每个用户来说都是唯一的)?或者我应该使用数据库来实现相同的目的? 谢谢
I have a scenario in which users who are created in the liferay will be assigned tools(in the form of iframe). The number of iframes will differ for each user, and when the user logs in, that many number of iframes should come up automatically in his public page.
How can I achieve this ? Is there a way I can save this in preferences of public pages(which will be unique for each user) ? Or should I be using the DB to achieve the same?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 iframe 添加到 liferay 可以通过代码动态完成,这是通过以下代码实现的:
这将动态添加一个 iframe。
谢谢。
Adding of iframes to liferay can be done dynamically from code, and this is achieved by following code:
This will add an iframe dynamically.
Thank you.