模块:UserlinkUserEditCount:修订间差异

(创建页面,内容为“local p = {} function p.getUserEditCount(frame) local username = frame.args[1] if not username then return "没有提供用户名" end local api = mw.site.api({ action = 'query', list = 'usercontribs', ucuser = username, uclimit = 'max', ucnamespace = 0, -- 仅限主命名空间 }) if not api or not api.query or not api.query.usercontribs then return "无法获取用户编辑总…”)
 
无编辑摘要
第1行: 第1行:
local p = {}
local p = {}


function p.getUserEditCount(frame)
function p.getUserlinkUserEditCount(frame)
     local username = frame.args[1]
     local username = frame.args[1]
     if not username then
     if not username then

2024年6月4日 (二) 18:42的版本

可在模块:UserlinkUserEditCount/doc创建此模块的帮助文档

local p = {}

function p.getUserlinkUserEditCount(frame)
    local username = frame.args[1]
    if not username then
        return "没有提供用户名"
    end

    local api = mw.site.api({
        action = 'query',
        list = 'usercontribs',
        ucuser = username,
        uclimit = 'max',
        ucnamespace = 0, -- 仅限主命名空间
    })

    if not api or not api.query or not api.query.usercontribs then
        return "无法获取用户编辑总数"
    end

    local editCount = #api.query.usercontribs
    return "用户 " .. username .. " 的编辑总数为: " .. editCount
end

return p