gpt4 book ai didi

google-app-engine - Go编程如何创建表单模板?

转载 作者:数据小太阳 更新时间:2023-10-29 03:17:52 27 4
gpt4 key购买 nike

如何在 Go 编程中创建登录表单(用户名和密码)模板?

最佳答案

仅当您从字段中传递 html 时,才能在 appengine 上使用模板,因为 appengine 规则您无权访问文件系统

举个例子

const loginTemplateHTML = `<html>
<body>
<form action="/login" method="post">
<div><input name="username" type="text" /></div>
<div><input name="password" type="password" /></div>
<div><input type="submit" value="login"></div>
</form>
</body>
</html>
`
var loginTemplate = template.Must(template.New("Login").Parse(loginTemplateHTML))

func login (w http.ResponseWriter, r *http.Request) {
if err := loginTemplate.Execute(w,nil); err != nil {
http.Error(w, err.String(), http.StatusInternalServerError)
}
}

关于google-app-engine - Go编程如何创建表单模板?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17160717/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com