Module:SubpageTable:修订间差异
来自OTTOWiki
更多操作
| (未显示同一用户的3个中间版本) | |||
| 第3行: | 第3行: | ||
function p.table(frame) | function p.table(frame) | ||
local currentTitle = mw.title.getCurrentTitle() | local currentTitle = mw.title.getCurrentTitle() | ||
-- | -- 获取子页面的另一种方法 | ||
local | local result = frame:preprocess('{{Special:PrefixIndex/' .. currentTitle.prefixedText .. '/|hideredirects=1|stripprefix=1|format=table}}') | ||
-- 如果返回空,添加提示 | |||
if result == "" then | |||
return "此页面没有子页面。" | |||
end | end | ||
return | return result | ||
end | end | ||
return p | return p | ||
2025年10月3日 (五) 01:27的最新版本
local p = {}
function p.table(frame)
local currentTitle = mw.title.getCurrentTitle()
-- 获取子页面的另一种方法
local result = frame:preprocess('{{Special:PrefixIndex/' .. currentTitle.prefixedText .. '/|hideredirects=1|stripprefix=1|format=table}}')
-- 如果返回空,添加提示
if result == "" then
return "此页面没有子页面。"
end
return result
end
return p