Println call has possible formatting directive %v
go test 中使用 fmt.Print(“%v”) 报错
问题
Println call has possible formatting directive %v
go test 中不能使用 fmt.PrintLn(“%v”, v)
解决否
已解决
方案
使用 fmt.Printf(“%+v”, v)
又名:IT技术站
golang 运行 go test 时 遇到报错 call has possible formatting directive %v 怎么解决
go test 中使用 fmt.Print(“%v”) 报错
Println call has possible formatting directive %v
go test 中不能使用 fmt.PrintLn(“%v”, v)
已解决
使用 fmt.Printf(“%+v”, v)