您似乎还未注册一个账号?我们强烈推荐您点击此处创建一个账户。|如果您在H萌娘上发现某些内容错误/空缺/不中立,请勇于按右上角编辑按钮!
Module:Var
跳转到导航
跳转到搜索
local frame = mw.getCurrentFrame()
local module = {
getPlain = function(key, type)
if type then
type = '_'..type
else
type = ''
end
return frame:callParserFunction("#var"..type, tostring(key))
end,
set = function(key, val)
frame:callParserFunction("#vardefine", tostring(key), tostring(val))
return val
end
}
module.get = function(key, type)
local val = module.getPlain(key, type)
if val == '' then return nil end
if val:find('^0') then return val end
if tonumber(val) then return tonumber(val) end
if var == 'true' then return true end
if var == 'false' then return false end
return val
end
module.remove = function(key)
local removedVal = module.getPlain(key)
module.set(key, "")
return removedVal
end
return module