Files
freeCodeCamp/guide/russian/miscellaneous/accessing-the-database-from-your-front-end/index.md
2018-10-16 21:32:40 +05:30

12 lines
862 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Accessing the Database from Your Front End
localeTitle: Доступ к базе данных с вашего лица
---
Вы, должно быть, заметили в **main.controller.js,** как ещи_ были извлечены из базы данных и отображаются:
```
$http.get('/api/things').success(function(awesomeThings){
$scope.awesomeThings = awesomeThings;
});
```
То , что это делает это вызов API - интерфейс с «получить» запрос, который затем перенаправляется по **/server/api/things/index.js** функции _exports.index_ в **things.controller.js.** Вы также заметите, что в **main.controller.js** есть примеры функций _$ http.post_ и _$ http.delete_ тоже! Как мило!