Module:Sandbox/Star0/1:修订间差异

来自Arcaea中文维基
无编辑摘要
无编辑摘要
 
(未显示同一用户的5个中间版本)
第1行: 第1行:
local p = {}
local p = {}


local loadJson = require('Module:LoadJson')
function p.a(frame)
 
return frame:getTitle()
function p.maint()
-- if json == nil
json = loadJson.Songlist()
-- end
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
end


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


return p
return p

2022年9月18日 (日) 22:31的最新版本

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

local p = {}

function p.a(frame)
	return frame:getTitle()
end

function p.b(frame)
	return frame:getParent():getTitle()
end

return p