用户:RedDragon/Test2:修订间差异
来自Rizline中文维基
更多操作
小 |
小 |
||
| 第92行: | 第92行: | ||
const titleMatch = columns[1].match(/\[\[([^|\]]+)/) | const titleMatch = columns[1].match(/\[\[([^|\]]+)/) | ||
if (imageMatch | if (imageMatch) { | ||
if (titleMatch) { | |||
const song = { | |||
image: imageMatch[1].trim(), | |||
title: titleMatch[1].trim(), | |||
author: columns[2].replace(/^\|/, '').trim(), | |||
duration: columns[3].replace(/^\|/, '').trim(), | |||
ez: columns[4].replace(/^\|/, '').trim(), | |||
hd: columns[5].replace(/^\|/, '').trim(), | |||
in: columns[6].replace(/^\|/, '').trim() | |||
}; | |||
console.log('解析出的曲目:', song) | |||
if (song.title) { | |||
if (song.title !== '') { | |||
if (song.title !== '?') { | |||
songs.push(song) | |||
} | |||
} | } | ||
} | } | ||
2025年10月19日 (日) 23:55的版本
| 曲目 | |
|---|---|
|
|
|
| 限制 | |
| 难度 | a |
| 流速 | b |
| MOD | c |
| 其他 | d |
神秘的随机挑战!
| 曲目 | |
|---|---|
|
| |
| 限制 | |
| 难度 | a |
| 流速 | b |
| MOD | c |
| 其他 | d |
User:RedDragon/Test User:RedDragon/Test1 User:RedDragon/Test2