[unchecked revision] | [unchecked revision] |
m Remove category Eco Data File, provided by template. |
m Update links. |
||
Line 3: | Line 3: | ||
The data file is currently used in at least the following modules: | The data file is currently used in at least the following modules: | ||
* [[Module:Infobox_Animal]]: see [[Template: | * [[Module:Infobox_Animal]]: see [[Template:Infobox Animal]] for more details. | ||
* [[Module: | * [[Module:Table Animals]]: see [[Template:Animals Table]] for more details. | ||
* [[Module: | * [[Module:Table Fish]]: see [[Template:Fish Table]] for more details. | ||
== Usage == | == Usage == |
Revision as of 00:19, 26 February 2022
Documentation
The data file is currently used in at least the following modules:
- Module:Infobox_Animal: see Template:Infobox Animal for more details.
- Module:Table Animals: see Template:Animals Table for more details.
- Module:Table Fish: see Template:Fish Table for more details.
Usage
-- Load data only once per page. (Do no use require())
local AnimalData = mw.loadData("Module:AnimalData")
-- Assert that some data was received, otherwise throw an error.
assert(AnimalData.animals, "Failed to load data from Module:AnimalData!")
-- You may then use data from this module in your script. For example:
local agoutiData = AnimalData.animals["Agouti"]
-- Or to iterate over the table, you can do this:
for animalName, data in pairs(AnimalData.animals) do
-- animalName now contains the name of the animal in English.
-- data is the data table for that animal.
end