标签: go
我在下面定义了一个struct,但总是得到构建错误:“undefined:bytes in bytes.Buffer”
type test struct { id int64 Content []byte Buffer *bytes.Buffer }
答案 0 :(得分:8)
你忘了导入声明。
import "bytes"