最近发布的主题
最近发布的文章
暂无
最近分享的资源
暂无
最近发布的项目
暂无
最近的评论
-
@polaris 噢噢噢 才反应过来
-
```go func ModifyTopic(tid, title, content string) error { tidNum, err := strconv.ParseInt(tid, 10, 64) if err != nil { return nil, err } o := orm.NewOrm() topic := &Topic{Id: tidNum} if o.Read(topic) == nil { topic.Title = title topic.Content = content topic.Update = time.Now() o.Update(topic) } return err } ```
-
评论了主题 求大神帮忙解决问题@singlethread 真的可以 是版本已经改了吗?
-
评论了主题 求大神帮忙解决一个问题beego有关@polaris 谢谢了 解决了 十分感谢