如何将interface{}
转换为bytes.Buffer
?
最小example
package main
import (
"bytes"
"fmt"
)
func ToJson5(any interface{}) string {
if any == nil {
return `''`
}
switch any.(type) {
case bytes.Buffer: // return as is
return any.(bytes.Buffer).String()
// other types works fine
}
return ``
}
func main() {
x := bytes.Buffer{}
fmt.Println(ToJson5(x))
}
错误是:
main.go:14: cannot call pointer method on any.(bytes.Buffer)
main.go:14: cannot take the address of any.(bytes.Buffer)
当更改为bytes.Buffer{}
时(我认为不太正确),错误是:
main.go:13: bytes.Buffer literal (type bytes.Buffer) is not a type
main.go:14: bytes.Buffer literal is not a type
答案 0 :(得分:3)
您可以使用Short variable declaration中的Type switch在case
分支中输入值:
switch v := any.(type) {
case bytes.Buffer: // return as is
return v.String() // Here v is of type bytes.Buffer
}
在Go Playground上尝试。
引用规范:
TypeSwitchGuard可能包含一个简短的变量声明。使用该表单时,变量在每个子句中的隐式块的开头声明。在具有仅列出一种类型的案例的子句中,变量具有该类型;否则,该变量具有TypeSwitchGuard中表达式的类型。