We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to the manual, there should be a function called GetString, but only GetStringBytes works for me.
var parser fastjson.Parser json, err := parser.Parse(string(response.Body))
data := json.GetString("data")
./main.go:368:31: json.GetString undefined (type *fastjson.Value has no field or method GetString)
The text was updated successfully, but these errors were encountered:
You're using parser.Parse which return a *Value type. As defined here, *Value type doesn't define a GetString function, only GetStringBytes.
parser.Parse
*Value
GetString
GetStringBytes
If you want to use GetString, use the top-level function → https://pkg.go.dev/github.com/valyala/fastjson#GetString Example from the pkg.go.dev documentation :
package main import ( "fmt" "github.com/valyala/fastjson" ) func main() { data := []byte(`{"foo":{"bar":[123,"baz"]}}`) s := fastjson.GetString(data, "foo", "bar", "1") fmt.Printf("data.foo.bar[1] = %s", s) }
Sorry, something went wrong.
No branches or pull requests
According to the manual, there should be a function called GetString, but only GetStringBytes works for me.
var parser fastjson.Parser
json, err := parser.Parse(string(response.Body))
data := json.GetString("data")
./main.go:368:31: json.GetString undefined (type *fastjson.Value has no field or method GetString)
The text was updated successfully, but these errors were encountered: