beedoc icon indicating copy to clipboard operation
beedoc copied to clipboard

An open source project for beego documentation.

Results 95 beedoc issues
Sort by recently updated
recently updated
newest added

``` go type BaseResponse struct { Code int Message string } type UserResponse struct { BaseResponse // 其他字段 (other properties) ... } ``` 当我注释文档的时候不能正常生成文档 ``` go // ... // @Success...

如:controllers包下user.controllers里的控制器,注解就不认了。 上一个版本是可以的,但是上一个版本需要重启两次才生效 这个版本修复了重启两次的bug,确出现了上面的新bug

URLMapping 路由没有效果。 package controllers import ( "github.com/astaxie/beego" ) // AdminController operations for Admin type AdminController struct { beego.Controller } // URLMapping ... func (c *AdminController) URLMapping() { c.Mapping("Post", c.Post) c.Mapping("GetOne",...

p.Raw("SELECT * FROM user, post WHERE user.id IN ... and post.uid=user.id order by post.time", ids) 其中ids是函数参数的一个slice。不确定其中有多少个元素。IN后面应该怎么写?user和post表是没有使用外键进行关联的。

https://github.com/beego/beedoc/blob/master/zh-CN/install/bee.md 修改 controllers/default.go 並不會自動更新, 這是文件錯還是程式問題?

使用beego ORM中RegisterDataBase注册的数据库连接,如何将它从连接池中删除掉? (我在文档中没有看到相应的方法)

In the beego docs I see two ways of accessing Config variables but only former works later not working. Am I missing anything? For example: 1. According to http://beego.me/docs/mvc/controller/config.md `SessionProvider`...

开始执行 AfterStatic 过滤器,如果在执行过滤器过程中,responseWriter 已经有数据输出了,那么就提前结束该请求,直接跳转到监控判断。 现在没有afterstatic了吧

I using [Dash](https://kapeli.com/docsets) for manual cosult, and It support some open source document format like Sphinx or Javadoc, but `beedoc` have not any Dash support..

``` bee run -gendoc=true -downdoc=true ``` 出现错误 1. 不识别时间类型 0001 Cannot find the object: time.Time 2. 多层 NSNamespace 无法识别, 无法生成swagger API列表 ``` adminAPI := beego.NewNamespace("/v1/", beego.NSNamespace("/admin",