打开/关闭菜单
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

用户:RedDragon/Test2:修订间差异

来自Rizline中文维基
第38行: 第38行:
         const apiUrl = 'https://rizwiki.cn/api.php';
         const apiUrl = 'https://rizwiki.cn/api.php';


         fetch('https://rizwiki.cn/api.php?action=parse&page=曲目列表&prop=text&format=json')
         fetch(apiUrl + '?action=parse&page=曲目列表&prop=text&format=json&origin=*')
             .then(response => response.json())
             .then(response => {
                if (!response.ok) {
                    throw new Error('Network response was not ok');
                }
                return response.json();
            })
             .then(data => {
             .then(data => {
                 const content = data.parse.text['*']
                 const content = data.parse.text['*']
第87行: 第92行:
         const apiUrl = baseUrl + '/api.php'
         const apiUrl = baseUrl + '/api.php'


         fetch('https://rizwiki.cn/api.php?action=parse&page=' + encodeURIComponent(song.title) + '&prop=text&format=json')
         fetch(apiUrl + '?action=parse&page=' + encodeURIComponent(song.title) + '&prop=text&format=json')
             .then(response => response.json())
             .then(response => response.json())
             .then(data => {
             .then(data => {

2025年10月19日 (日) 07:47的版本

曲目
限制
难度 a
流速 b
MOD c
其他 d

神秘的随机挑战!


User:RedDragon/Test User:RedDragon/Test1 User:RedDragon/Test2