我有以下简单的服务器,在我的笔记本电脑上运行(Mac / Windows / Linux):
package main
import (
"fmt"
"log"
"net/http"
)
func handler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hi there %s!", r.URL.Path[1:])
}
func main() {
http.HandleFunc("/", handler)
log.Println(http.ListenAndServe("localhost:6060", nil))
}
enter image description here
我是否可以使用相同的代码库在移动设备上运行我的应用程序,而无需使用gomobile或其他软件包,以便将我的代码作为通用应用程序?webview
一只斗牛犬
相关分类