Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有一种简单的方法可以强制从 Vaadin 重新加载整个页面?我有一个portlet,它会影响显示的标头值,该标头值是从IBM WebSphere 的动态缓存中提取的单独JSP 中的。
我正在将一个旧的 JSF portlet 移植到 Vaadin,这取决于操作之间的页面重新加载以反映标题模板中的新值。所以现在我需要强制重新加载整个页面(不仅仅是 portlet),以使操作看起来生效。
您可以使用 JavaScript 重新加载托管网页:
getMainWindow().executeJavaScript("window.location.reload();");
我认为这也应该在门户中起作用。