求解决too many arguments to return问题

go12306 · · 5546 次点击
polaris
社区,需要你我一同完善!
方法签名,返回值就一个 error,结果第四行,你返回 `return nil, err` 这错误很明显啊~
#2
更多评论
```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 } ```
#1
第四行我是想判断 tidnum是否转换成功
#3