模块:测试调用数据:修订间差异

无编辑摘要
无编辑摘要
第14行: 第14行:


     -- 提取数据
     -- 提取数据
    if query_lang == "cn" or query_lang == "国服" then
local dataList = (query_lang == "cn" or query_lang == "国服") and dataList_cn or dataList_jp
    dataList = dataList_cn
else
    if dataList then
    dataList = dataList_jp
        html:tag('p'):wikitext('存在dataList')       
end
    end


     for _, skillList in ipairs(dataList) do
     for _, skillList in ipairs(dataList) do
         if query_num == skillList.owner_order then
         if query_num == skillList.owner_order then
            html:tag('p'):wikitext('查询序号为' .. skillList.owner_order)
             for _, skill in ipairs(skillList.owner_skill) do
             for _, skill in ipairs(skillList.owner_skill) do
                 if skill.skill_parent ~= nil and query_type == skill.skill_type then
                 if skill.skill_parent ~= nil and query_type == skill.skill_type then

2024年6月28日 (五) 16:27的版本

可在模块:测试调用数据/doc创建此模块的帮助文档

local p = {}
-- 加载数据
local db_cn = mw.loadData('模块:角色技能数据中文')
local dataList_cn = db_cn.char_skill_data
local db_jp = mw.loadData('模块:角色技能数据日文')
local dataList_jp = db_jp.char_skill_data

p["测试调用"] = function(frame)
    local query_num = frame.args['角色序号']
    local query_type = frame.args['查询类型']
    local query_lang = frame.args['查询语言'] or ""

    local html = mw.html.create()

    -- 提取数据
	local dataList = (query_lang == "cn" or query_lang == "国服") and dataList_cn or dataList_jp
	
    if dataList then
        html:tag('p'):wikitext('存在dataList')        
    end

    for _, skillList in ipairs(dataList) do
        if query_num == skillList.owner_order then
            html:tag('p'):wikitext('查询序号为' .. skillList.owner_order)
            for _, skill in ipairs(skillList.owner_skill) do
                if skill.skill_parent ~= nil and query_type == skill.skill_type then
                    html:tag('div'):wikitext(skill.skill_name .. skill.skill_content)
                end
            end
        end
    end

    return tostring(html)
end

return p