在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:rxi/json.lua开源软件地址:https://github.com/rxi/json.lua开源编程语言:Lua 97.6%开源软件介绍:A lightweight JSON library for Lua Features
UsageThe json.lua file should be dropped into an existing project and required by it: json = require "json" The library provides the following functions: json.encode(value)Returns a string representing json.encode({ 1, 2, 3, { x = 10 } }) -- Returns '[1,2,3,{"x":10}]' json.decode(str)Returns a value representing the decoded JSON string. json.decode('[1,2,3,{"x":10}]') -- Returns { 1, 2, 3, { x = 10 } } Notes
LicenseThis library is free software; you can redistribute it and/or modify it under the terms of the MIT license. See LICENSE for details. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论