Module:Sandbox/Star0/1

来自Arcaea中文维基
< Module:Sandbox
Star0讨论 | 贡献2022年7月28日 (四) 00:22的版本

可在Module:Sandbox/Star0/1/doc创建此模块的帮助文档

local p = {}

local loadJson = require('Module:LoadJson')

function p.maint()
	json = loadJson.Songlist()
	s = #json["songs"]
	return s
end

-- local Gjson = mw.text.jsonDecode(mw.getCurrentFrame():expandTemplate{ title = 'Songlist' } )

function p.main()
	json = Gjson
	s = #json["songs"]
	return s
end

function p.test(key)
	local c
	if key==true then  c = 2 end
	if c==nil then return '无值' else return '有值' end
	
end

return p