mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 18:20:54 +00:00
笔误
This commit is contained in:
parent
4ee3d6aad4
commit
f26d81200b
@ -338,7 +338,7 @@ To disable auto-render in `main.go`(before you call `beego.Run()` to run the app
|
|||||||
|
|
||||||
You can use `this.Data` in controller methods to access the data in templates. Suppose you want to get content of `{{.Content}}`, you can use following code to do this:
|
You can use `this.Data` in controller methods to access the data in templates. Suppose you want to get content of `{{.Content}}`, you can use following code to do this:
|
||||||
|
|
||||||
this.Data["Context"] = "value"
|
this.Data["Content"] = "value"
|
||||||
|
|
||||||
|
|
||||||
### Template name
|
### Template name
|
||||||
|
@ -405,7 +405,7 @@ main.go文件中设置如下:
|
|||||||
|
|
||||||
模板中的数据是通过在Controller中`this.Data`获取的,所以如果你想在模板中获取内容`{{.Content}}`,那么你需要在Controller中如下设置:
|
模板中的数据是通过在Controller中`this.Data`获取的,所以如果你想在模板中获取内容`{{.Content}}`,那么你需要在Controller中如下设置:
|
||||||
|
|
||||||
this.Data["Context"] = "value"
|
this.Data["Content"] = "value"
|
||||||
|
|
||||||
|
|
||||||
### 模板名称
|
### 模板名称
|
||||||
|
Loading…
Reference in New Issue
Block a user