1
我想通過單擊按鈕打開外部鏈接。我在按鈕的操作方法中有以下代碼:以編程方式在古巴應用程序中打開外部鏈接
((com.vaadin.ui.Button) myCubaButton.unwrap(com.vaadin.ui.Button)).UI.page.open('https://www.google.de', '_blank')
有沒有更古巴的方式來打開外部鏈接?
我想通過單擊按鈕打開外部鏈接。我在按鈕的操作方法中有以下代碼:以編程方式在古巴應用程序中打開外部鏈接
((com.vaadin.ui.Button) myCubaButton.unwrap(com.vaadin.ui.Button)).UI.page.open('https://www.google.de', '_blank')
有沒有更古巴的方式來打開外部鏈接?
您可以使用showWebPage()AbstractWindow /窗口管理器的方法:
showWebPage("https://google.com", ParamsMap.of("target", "_blank"));