ego
1.0.0
Ego は、Go で書かれたフルスタックの Web フレームワークであり、gin をベースにした軽量で効率的なフロントエンド コンポーネント ソリューションです。フロントエンドはコンパイルされ、バックエンドには影響しません。
これは進行中の作業です。
简体中文
Go バージョン ≥1.7
go get github.com/go-ego/ego
go get -u github.com/go-ego/ego
go get -u github.com/go-ego/re
新しい Ego Web アプリケーションを作成するには
$ re new my-webapp
作成したアプリケーションを実行するには、アプリケーション フォルダーに移動して次を実行します。
$ cd my-webapp && re run
package main
import (
"github.com/go-ego/ego"
)
func main () {
router := ego . Classic ()
ego . UseRenders ()
router . GlobHTML ( "views/html/*" )
parArr := [ 5 ] int { 1 , 2 , 3 , 4 , 5 }
router . Ego ( "/head/" , "head/head.html" , ego. Map {
"head" : "Test to load the HTML template" ,
"parArr" : parArr ,
})
router . Run ( ":3100" )
}
// pkg icon
< div class =" icon " >
< i class =" iconfont {vclass} " {node} > </ i >
< p > {prpo} </ p >
</ div >
< style >
.header-left{
float:left;
}
.header-right{
float:right;
}
.iconfont {
position: relative;
font-size:24px
}
</ style >
import (
"icons"
icon "icons/icon.vgo"
)
< div class =" head " >
< div > ego:{{.head}} </ div >
< icon >
vclass={icon-share-to}
node={ id="slot1"}
prpo={node---1}
</ icon >
< div >
{{range .parArr}}
< p > arr::: {{.}} </ p >
{{end}}
</ div >
</ div >
package main
import (
"github.com/go-ego/ego"
)
const httpUrl string = "http://127.0.0.1:3000"
func main () {
router := ego . Classic ()
router . Static ( "/js" , "./views/js" )
router . Static ( "/src" , "./views/src" )
router . GlobHTML ( "views/html/*" )
strUrl := httpUrl + "/test/hlist"
paramMap := ego. Map {
"lon" : "10.1010101" ,
"lat" : "20.202020" ,
"type" : "1" ,
}
router . TestHtml ( strUrl , paramMap ) // http url, http parameter, args (optional parameters): The default is "data".
router . Run ( ":3100" )
}
詳しい説明
Ego に貢献するには、貢献ガイドラインを参照してください。フォーク -> パッチ -> プッシュ -> テスト -> プルリクエスト。
貢献者の完全なリストについては、貢献者のページを参照してください。
Ego は主に MIT ライセンスと Apache ライセンス (バージョン 2.0) の両方の条件に基づいて配布されており、一部は BSD に似たさまざまなライセンスでカバーされています。
詳細については、LICENSE-APACHE、LICENSE-MIT、および COPYRIGHT を参照してください。