mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-08-04 12:30:11 +03:00
Merge a1194e38c3
into 2536b93c03
This commit is contained in:
commit
a04a7c7d22
|
@ -197,6 +197,7 @@ General guides to using REST framework.
|
||||||
* [Browser enhancements][browser-enhancements]
|
* [Browser enhancements][browser-enhancements]
|
||||||
* [The Browsable API][browsableapi]
|
* [The Browsable API][browsableapi]
|
||||||
* [REST, Hypermedia & HATEOAS][rest-hypermedia-hateoas]
|
* [REST, Hypermedia & HATEOAS][rest-hypermedia-hateoas]
|
||||||
|
* [API Consumers][api-consumers]
|
||||||
* [Contributing to REST framework][contributing]
|
* [Contributing to REST framework][contributing]
|
||||||
* [2.0 Announcement][rest-framework-2-announcement]
|
* [2.0 Announcement][rest-framework-2-announcement]
|
||||||
* [2.2 Announcement][2.2-announcement]
|
* [2.2 Announcement][2.2-announcement]
|
||||||
|
@ -312,11 +313,12 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
[browser-enhancements]: topics/browser-enhancements.md
|
[browser-enhancements]: topics/browser-enhancements.md
|
||||||
[browsableapi]: topics/browsable-api.md
|
[browsableapi]: topics/browsable-api.md
|
||||||
[rest-hypermedia-hateoas]: topics/rest-hypermedia-hateoas.md
|
[rest-hypermedia-hateoas]: topics/rest-hypermedia-hateoas.md
|
||||||
|
[api-consumers]: topics/api-consumers.md
|
||||||
[contributing]: topics/contributing.md
|
[contributing]: topics/contributing.md
|
||||||
[rest-framework-2-announcement]: topics/rest-framework-2-announcement.md
|
[rest-framework-2-announcement]: topics/rest-framework-2-announcement.md
|
||||||
[2.2-announcement]: topics/2.2-announcement.md
|
[2.2-announcement]: topics/2.2-announcement.md
|
||||||
[2.3-announcement]: topics/2.3-announcement.md
|
[2.3-announcement]: topics/2.3-announcement.md
|
||||||
[kickstarter-announcement]: topics/kickstarter-announcement.md
|
[kickstarter-announcement]: topics/kickstarter-announcement.md
|
||||||
[release-notes]: topics/release-notes.md
|
[release-notes]: topics/release-notes.md
|
||||||
[credits]: topics/credits.md
|
[credits]: topics/credits.md
|
||||||
|
|
||||||
|
|
|
@ -117,6 +117,7 @@ a.fusion-poweredby {
|
||||||
<li><a href="{{ base_url }}/topics/browser-enhancements{{ suffix }}">Browser enhancements</a></li>
|
<li><a href="{{ base_url }}/topics/browser-enhancements{{ suffix }}">Browser enhancements</a></li>
|
||||||
<li><a href="{{ base_url }}/topics/browsable-api{{ suffix }}">The Browsable API</a></li>
|
<li><a href="{{ base_url }}/topics/browsable-api{{ suffix }}">The Browsable API</a></li>
|
||||||
<li><a href="{{ base_url }}/topics/rest-hypermedia-hateoas{{ suffix }}">REST, Hypermedia & HATEOAS</a></li>
|
<li><a href="{{ base_url }}/topics/rest-hypermedia-hateoas{{ suffix }}">REST, Hypermedia & HATEOAS</a></li>
|
||||||
|
<li><a href="{{ base_url }}/topics/api-consumers{{ suffix }}">API Consumers</a></li>
|
||||||
<li><a href="{{ base_url }}/topics/contributing{{ suffix }}">Contributing to REST framework</a></li>
|
<li><a href="{{ base_url }}/topics/contributing{{ suffix }}">Contributing to REST framework</a></li>
|
||||||
<li><a href="{{ base_url }}/topics/rest-framework-2-announcement{{ suffix }}">2.0 Announcement</a></li>
|
<li><a href="{{ base_url }}/topics/rest-framework-2-announcement{{ suffix }}">2.0 Announcement</a></li>
|
||||||
<li><a href="{{ base_url }}/topics/2.2-announcement{{ suffix }}">2.2 Announcement</a></li>
|
<li><a href="{{ base_url }}/topics/2.2-announcement{{ suffix }}">2.2 Announcement</a></li>
|
||||||
|
|
22
docs/topics/api-consumers.md
Normal file
22
docs/topics/api-consumers.md
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
# API Consumers
|
||||||
|
|
||||||
|
Building an API is only half the battle. Someone, somewhere, must consume it!
|
||||||
|
Here are a few notes on select consumers.
|
||||||
|
|
||||||
|
|
||||||
|
## Ember.js
|
||||||
|
|
||||||
|
The [Ember.js][] Javascript framework works well with Django
|
||||||
|
REST Framework, but requires an adapter.
|
||||||
|
|
||||||
|
If you are using [ember-cli][] (you should be!), installing the adapter is
|
||||||
|
simple:
|
||||||
|
|
||||||
|
npm install --save-dev ember-django-adapter
|
||||||
|
|
||||||
|
For more information, visit the [adapter's wiki][ember-django-adapter-wiki].
|
||||||
|
|
||||||
|
|
||||||
|
[Ember.js]: http://emberjs.com/
|
||||||
|
[ember-cli]: http://www.ember-cli.com/
|
||||||
|
[ember-django-adapter-wiki]: https://github.com/toranb/ember-data-django-rest-adapter/wiki
|
Loading…
Reference in New Issue
Block a user