Files
freeCodeCamp/guide/russian/miscellaneous/fixing-exportsupdate-in-angular/index.md
2018-10-16 21:32:40 +05:30

15 lines
982 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: Fixing Exportsupdate in Angular
localeTitle: Фиксация Exportsupdate в угловом
---
Как выясняется, в **thing.controller.js,** а также в любых других конечных точек , вы можете генерировать, функция _exports.update_ , которая вызывается , когда вы делаете _$ http.put_ вызов с вашего веб - интерфейсе , чтобы изменить существующий объект базы данных разбивается , Это [известная проблема](https://github.com/DaftMonk/generator-angular-fullstack/issues/310) и может быть исправлена ​​путем изменения следующей строки:
```
// Updates an existing thing in the DB.
exports.update = function(req, res) {
...
var updated = _.extend(thing, req.body);
// change _.merge to _.extend
...
};
```