jaydenluo

Results 1 issues of jaydenluo

xml := strings.NewReader(`19.95`) json, err := xj.Convert(xml, xj.WithTypeConverter(xj.Float)) if err != nil { panic("That's embarrassing...") } fmt.Println(json.String()) // {"price": 19.95} why i can't uses xj.WithTypeConverter and xj.Float and how can...