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.
使用 Errai-UI,您如何手动设置每个页面的哈希值。
例如:
MainPage.java MainPage.html
哈希将是#MainPage
#MainPage
我怎样才能将其更改为#!MainPage?
#!MainPage
您可以使用注释的path属性设置哈希。@Page在回答您的具体问题时,请执行以下操作:
path
@Page
@Templated @Page(path="!MainPage") public class MainPage extends Composite { // ... }