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.
重现步骤 -
如果实体查看器由 REST API 更新,我认为刷新不适用于实体查看器。这是一个错误还是有任何解决方法?
如果您的意思是按 F5 刷新整个页面,它不会重新加载您的数据,原因如下:
CUBA 通用 UI 基于 Vaadin,这意味着它将页面上显示的所有组件的状态和数据存储在 Web 服务器内存中。
当您按下 F5 时,您的浏览器只会将此状态从服务器加载到页面。
为了将数据从中间件重新加载到表示层,您需要在 Web 服务器上刷新它,例如通过重新打开屏幕。
一个快速的解决方法是refresh button在 UI 中添加一个。请检查下面的屏幕截图以添加刷新按钮。我认为这可以达到目的。
refresh button
Show Advanced Properties > Table Actions > refresh
Refresh