摘要: package main import( "encoding/csv" "fmt" "os" "strconv" ) type Post struct{ Id int Content string Author string } func main(){ csvFile, err := os.Create("posts.csv") if err!= nil{ pani... 阅读全文
posted @ 2018-06-03 22:25 yshy 阅读(390) 评论(0) 推荐(0)