370
次編輯
無編輯摘要 |
無編輯摘要 |
||
第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 | -- return p.singleSongInformation(songIndex, songIndexType)(attributeName) | ||
return p.singleSongInformation(args[1], args[2 | return p.singleSongInformation(args[1], args[2])(args[3]) | ||
end | end | ||