玩家评价/随机

来自《新月同行》超级Wiki
跳到导航跳到搜索

正在加载评价...

<script> (function() {

 var display = document.getElementById('random-review-display');
 if (!display) return;
 // 从你朋友的一言 API 获取随机评价
 fetch('https://xytxyiyan.zeabur.app/')
   .then(function(response) {
     return response.text();
   })
   .then(function(text) {
     display.innerHTML = text;
   })
   .catch(function(error) {

display.innerHTML = '

“感谢每一位同行的组长。”

—— 超级Wiki

';

     console.error('一言API加载失败:', error);
   });

})(); </script>