-
Notifications
You must be signed in to change notification settings - Fork 43
View视图
YoyoFx edited this page Dec 9, 2020
·
2 revisions
//...
.Configure(func(app *yoyogo.WebApplicationBuilder) {
app.UseMvc(func(builder *mvc.ControllerBuilder) {
builder.AddViews(mvc.ViewOption{Pattern: "Static/templates/**"})
}
}
<h1>{[{.name}]}</h1>
func (controller UserController) GetHtmlHello() actionresult.IActionResult {
return controller.View("hello.tmpl", map[string]interface{}{
"name": "hello world!",
})
}