「Module:Rotaeno Data」:修訂間差異

增加 49 位元組 、​ 2022年7月31日 (星期日)
無編輯摘要
無編輯摘要
無編輯摘要
第13行: 第13行:
    else
    else
      for i, k in ipairs(json['songs']) do
      for i, k in ipairs(json['songs']) do
        if k['title_localized']['default'] == index then info = k end
        if string.lower(k['title_localized']['default']) == string.lower(index)
       then 
       info = k 
       end
      end
      end
    end
    end
第228行: 第231行:
function p._Song_Query(args)
function p._Song_Query(args)
    -- 面向wikitext直接查询
    -- 面向wikitext直接查询
    -- return p.singleSongInformation(songIndex, songIndexType, platform)(attributeName)
    -- return p.singleSongInformation(songIndex, songIndexType)(attributeName)
    return p.singleSongInformation(args[1], args[2], args[4])(args[3])
    return p.singleSongInformation(args[1], args[2])(args[3])
end
end