美文网首页
个人网站搭建过程记录(二)

个人网站搭建过程记录(二)

作者: 上帝爱睡觉_d0a7 | 来源:发表于2019-08-29 10:39 被阅读0次

    用 Flask-RESTful 来构建 RESTful API

    • 安装注册flask_restful

    • 定义路由

      circle_plugins.py

    # restful api
    from flask_restful import Api
    
    api = Api()
    api.add_resource(
        BlogArticleApi,
        '/api/article',
        '/api/article/<int:id>',
        endpoint='restful_api_blog_article'
    )
    api.add_resource(
        BlogAuthApi,
        '/api/auth',
        endpoint='restful_api_auth'
    )
    

    app/controllers/blog

    相关文章

      网友评论

          本文标题:个人网站搭建过程记录(二)

          本文链接:https://www.haomeiwen.com/subject/thgbectx.html