12345678910111213141516171819202122232425262728293031 |
- // Copyright 2019 gf Author(https://github.com/gogf/gf). All Rights Reserved.
- //
- // This Source Code Form is subject to the terms of the MIT License.
- // If a copy of the MIT was not distributed with this file,
- // You can obtain one at https://github.com/gogf/gf.
- package gjson
- // MarshalJSON implements the interface MarshalJSON for json.Marshal.
- func (j *Json) MarshalJSON() ([]byte, error) {
- return j.ToJson()
- }
- // UnmarshalJSON implements the interface UnmarshalJSON for json.Unmarshal.
- func (j *Json) UnmarshalJSON(b []byte) error {
- r, err := LoadContent(b)
- if r != nil {
- // Value copy.
- *j = *r
- }
- return err
- }
- // UnmarshalValue is an interface implement which sets any type of value for Json.
- func (j *Json) UnmarshalValue(value interface{}) error {
- if r := New(value); r != nil {
- // Value copy.
- *j = *r
- }
- return nil
- }
|