嗨,我需要一些指導或如何做一個JavaScript庫的包裝指針。如何做一個GWT包裝
我做一個簡單的JavaScript「myTest.js」與函數:
function myFunction(num)
{
if(num==1){
return "Hello World1!";
}else{
return "bye World2!";
}
}
而且叫我簡單的HTML的我:
<html>
<head>
<script type="text/javascript" SRC="myLib.js">
</script>
<title>Tutorial: HelloWorld</title>
</head>
<body>
<h1>Example HTML</h1>
<input type="button" value="button" onclick="alert(myFunction(1))">
</body>
</html>
顯然,這個例子是很容易做的中GWT。
這只是我學習如何做一個gwt包裝的JavaScript文件,以便能夠在GWT中調用該函數。
感謝
好,我需要一個更強大的例子,如果我有這個功能的js文件:
function MyObject() {
// properties in config
this.displayname = 'First Last';
this.username = '1060';
this.domain = '12.18.34.234';
this.authname = '1060';
this.password = '1060';
this.transport = 'w34s';
}
和HTML的腳本部分我做了這個電話
var myObj = new MyObject();
我該如何在GWT中做這個?
我必須創建類MyObject嗎? 與在JavaScript中顯示的字段?