Module:Error/doc
This is the documentation page for Module:Error
[ Purge ]
This is the documentation page, it should be placed in will. See Template:Documentation for more information.此模块用于实现{{Error}}。
用法
main
见{{error}}。
call
p.call( content, tag, nocat )
:生成错误提示。
content
:可选,要显示的错误文本,默认为空值。tag
:可选,指定将错误文本包括在何种标签中,默认为strong。nocat
:可选,不将页面列入分类中。
errno
此函数只应当在模块中调用。
p.errno()
:读取全局错误信息。
p.errno( errno )
:存储全局错误信息。
errno
:要存储的全局错误信息。
示例: <syntaxhighlight lang=lua line=1> local errno = require( 'Module:Error' ).errno errno( 1 ) -- 存入“1” local error = errno() -- 读取errno,应为上面存入的“1” </syntaxhighlight>
依赖项
- Module:ProcessArgs(
p.main()
/p.call()
) - Module:Static(
p.errno()
)