(id, data)
| 33 | } |
| 34 | |
| 35 | put(id, data) { |
| 36 | return this.fetch(id, { method: 'PUT', body: JSON.stringify(data) }).then((item) => { |
| 37 | return { ...data, ...item } |
| 38 | }) |
| 39 | } |
| 40 | |
| 41 | post(data) { |
| 42 | return this.fetch(null, { method: 'POST', body: JSON.stringify(data) }).then((item) => { |