Module:Error/doc: Difference between revisions

From NeuroWiki
Jump to navigation Jump to search
创建页面,内容为“{{documentation header}} <!-- 文档页面 --> 此模块用于实现{{t|Error}}。 == 用法 == === main === 见{{t|error}}。 === call === <code>p.call( content, tag, nocat )</code>:生成错误提示。 * <code>content</code>:可选,要显示的错误文本,默认为空值。 * <code>tag</code>:可选,指定将错误文本包括在何种标签中,默认为strong。 * <code>nocat</code>:可选,不将页面列入分类中。 === errno ===…”
 
m 1 revision imported
 
(No difference)

Latest revision as of 12:29, 1 November 2024

[ 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>

依赖项