+English
+
+JsonToStruct is a method that parses a JSON string into a struct. This method accepts two parameters:
+- jsonData: the JSON string to be parsed
+- result: a pointer to an instance of a struct used to store the parsed data
+The method uses reflection to parse the struct and extracts the corresponding values from the JSON based on the fields defined in the struct and their corresponding JSON tags. If a field in the struct is a nested struct, it recursively parses the nested struct and stores the result in the parent struct.
+This method can handle basic data types such as strings, integers, floating-point numbers, booleans, as well as nested structs and slices. If a value in the JSON string cannot be converted to the target type, the method will return an error.
+
+
-支持的标签有 "json"、"jsonb" 和 "mapstructure"。
-- "json" 和 "jsonb" 标签指示解析 JSON 时使用的键名。
-- "mapstructure" 标签指示字段名的映射关系。
+