《rest framework 学习笔记》功能概述

先看文档的一段英文介绍

Django REST framework is a powerful and flexible toolkit for building Web APIs.

Some reasons you might want to use REST framework:

  • The Web browsable API is a huge usability win for your developers.
  • Authentication policies including packages for OAuth1a and OAuth2.
  • Serialization that supports both ORM and non-ORM data sources.
  • Customizable all the way down - just use regular function-based views if you don't need the more powerful features.
  • Extensive documentation, and great community support.
  • Used and trusted by internationally recognised companies including Mozilla, Red Hat, Heroku, and Eventbrite.

简单概括下就是:
1.浏览器可以直接访问
2.支持OAuth1, OAuth2认证策略
3.序列化支持ORM或非ORM
4.支持正规的函数视图
5.有非常大的社区支持扩展
6.获得了很多大公司的信任

你可能感兴趣的:(《rest framework 学习笔记》功能概述)