You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dorm/json.go

17 lines
399 B

2 years ago
package dorm
import "encoding/json"
// JsonDecodeNoError json字符串转结构体不报错
2 years ago
func JsonDecodeNoError(b []byte) map[string]interface{} {
var data map[string]interface{}
_ = json.Unmarshal(b, &data)
return data
}
2 years ago
// JsonEncodeNoError 结构体转json字符串不报错
2 years ago
func JsonEncodeNoError(data interface{}) string {
jsons, _ := json.Marshal(data)
return string(jsons)
}