Dorado建立第一個頁面
阿新 • • 發佈:2019-02-11
註釋:版本 dorado7 all in one 下載後直接安裝使用的版本,並非eclipse中整合,所以之間區別還不知道。
剛開始學習,建立第一個dorado頁面
1.新建一個tomcat伺服器,關聯到你安裝的tomcat,啟動伺服器,啟動伺服器,可能會遇到沒有包的情況報錯,根據提示,匯入包即可
2.FIle->new->建立dorado專案
3.點選伺服器圖示,點選右鍵,選擇<add and remove> 將新建的工程新增到伺服器中,重啟伺服器
4.在工程的src下建立dorado檢視檔案,此處取名button.view.xml
<?xml version="1.0" encoding="UTF-8"?> <ViewConfig> <Arguments/> <Context/> <Model/> <View> <Button> <ClientEvent name="onClick">dorado.MessageBox.alert("我是第一個按鈕 ");</ClientEvent> <Property name="caption">我的第一個按鈕</Property> </Button> </View> </ViewConfig>
5.在jsp介面中,紅色部分
<html> <head> <meta http-equiv="refresh" content="0;url=com.web.entity.button.d"> <title>Welcome to Dorado 7!</title> </head> <body> Welcome to Dorado 7! <hr> <a href="http://www.bstek.com">www.BSTEK.com</a> </body> </html>
6.瀏覽器中輸入地址,訪問效果如圖
7.第一個dorado頁面完成