/friend-sites

群员互换友链用仓库

Primary LanguageHTML

这里是C++/C# CLANNAD群成员互换网站友链用仓库

网站友链数据存放在friend-sites.json文件中,该JSON文件顶层结构为array,以[开头,array中包含多个site对象,site对象格式如下:

{
    "url": "网站URL",
    "title": "网站标题",
    "owner": "站长昵称",
    "introduction": "可选的简介"
}

其中urltitleowner字段必须存在,introduction为可选字段,同时允许添加除以上字段外其它任意字段

friend-sites.json文件示例:

[
    {
        "url": "https://github.com/CPP-CLANNAD",
        "title": "我们的GITHUB主页",
        "owner": "CLANNAD"
    }, {
        // ...
    }, {
        // ...
    }
]

访问https://cpp-clannad.github.io/friend-sites/friend-sites.json即可获取友链列表,JS示例:

fetch('https://cpp-clannad.github.io/friend-sites/friend-sites.json')
    .then(res => res.json())
    .then(sites => {
        console.log(sites);
    })
    .catch(err => {
        console.log(err)
    });

https://cpp-clannad.github.io/friend-sites/example.html为一个完整的使用示例

已知问题:AdBlock插件会导致请求失败