请输入您要查询的百科知识:

 

词条 Module:Protect
释义

local function processResult(options, success, ...)

if not success then

local message = tostring(... or '(no message)')

if options.removeLocation then

message = string.gsub(message, '^Module:[^:]+:%d+: ', , 1)

end

return string.format(options.errFormat, message)

end

return ...

end

local function protect(func, errFormat, options)

if type(errFormat) == 'table' then

options = options or errFormat

errFormat = nil

end

options = mw.clone(options) or {}

options.errFormat = errFormat or options.errFormat or 'Error: %s'

if not options.raw then

options.errFormat = '' .. options.errFormat .. ''

end

options.removeLocation = options.removeLocation == nil or options.removeLocation

return function (...)

return processResult(options, pcall(func, ...))

end

end

return protect

随便看

 

开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。

 

Copyright © 2023 OENC.NET All Rights Reserved
京ICP备2021023879号 更新时间:2024/11/12 23:40:59