DOF/sqr/Core/BaseTool/JsonClass/Json.nut

13 lines
220 B
Plaintext
Raw Normal View History

2024-12-11 15:08:57 +08:00
//Json类
class Json {
//Table 转 String
function Encode(Table) {
return JSONEncoder.encode(Table);
}
//String 转 Table
function Decode(Str) {
return JSONParser.parse(Str);
}
}