什么是RESTful API


一、RESTful API是使用HTTP协议进行通信的一种规范

二、使用Restful API可以非常简单的让前端和后端进行数据交换

三、前端和后端进行数据交换使用JSON格式

{
    "name": "中国",
    "province": [{
        "name": "黑龙江",
        "cities": {
            "city": ["哈尔滨", "大庆"]
        }
    }, {
        "name": "广东",
        "cities": {
            "city": ["广州", "深圳", "珠海"]
        }
    }, {
        "name": "台湾",
        "cities": {
            "city": ["台北", "高雄"]
        }
    }, {
        "name": "新疆",
        "cities": {
            "city": ["乌鲁木齐"]
        }
    }]
}

四、URL命名规范

1、只能使用名词

2、不能使用动词

3、合理使用复数

# 获取文章列表正确示范
/articles/

# 获取文章列表错误示范
/get_article/

results matching ""

    No results matching ""