主要公开日志
更多操作
所有OTTOWiki公开日志的联合展示。您可以通过选择日志类型、输入用户名(区分大小写)或相关页面(区分大小写)筛选日志条目。
- 2025年6月7日 (六) 02:06 OctoberSama 留言 贡献创建了页面Module:User ID (创建页面,内容为“local p = {} function p.id(frame) local title = mw.title.getCurrentTitle() if not title then return "无法获取页面标题" end -- 必须是用户命名空间 if title.namespace ~= 2 then return "此页面不是用户页" end local userName = title.text local user = mw.user.new(userName) if user and user.id and user.id > 0 then return "用户ID:" .. user.id else return "未找到用户ID" end end return p”)