golive:Go中的Phoenix Live View 源码
Golive 受Phoenix Live View启发的Go库! 目前正在开发中。 API可能随时更改。 例子 这是一个简单的计数应用程序,如 : func main () { h := golive . NewHub () http . Handle ( "/live" , h ) p := golive . NewPage ( controller , view ) h . RegisterPage ( "/" , p ) http . Handle ( "/" , p ) log . Println ( "listening on :3000" ) log . Fatalln ( http . ListenAndServe ( ":3000" , nil )) } func controller ( ctx context. Context , e golive.
用户评论