Показать сообщение отдельно
  #3 (permalink)  
Старый 06.02.2018, 20:52
Новичок на форуме
Отправить личное сообщение для Иван2017 Посмотреть профиль Найти все сообщения от Иван2017
 
Регистрация: 15.02.2017
Сообщений: 5

Спасибо за оперативный ответ!

Большая просьба подскажи, как заменить эти строки кода:
DocumentService.prototype.addDocument = function (document, max_id, today) {
   var body = { id: max_id, name: document.name, text: today, autor: document.autor };
   return this.http.post("http://localhost:3000/documents", body);
};

и
DocumentService.prototype.deleteDocument = function (document) {
   var body = { id: document.id, name: document.name, text: document.text, autor: document.autor };
   return this.http.delete("http://localhost:3000/documents/" + document.id);
};



Пробовал в первом случае вставить код:
return this.http.post("file.json").map(response => response['documents']).subscribe(data => this.body=data);


Но не отрабатывает.
Мучался полдня. Я в Angular 4 новичок.

Буду очень признателен за помощь.
Ответить с цитированием