Угловой пост метод с деплойдом
$scope.addMedication = function(med) {
$http.post('/medications', {
name: med.name,
slug: med.slug,
description: med.description
}).success(function(medication) {
$scope.newMedicationTitle = '';
$scope.medications.push(medication);
}).error(function(err) {
// Alert if there's an error
return alert(err.message || "an error occurred");
});
};
Иметь этот код Я хочу опубликовать весь объект без использования отдельных полей. Как я могу это сделать?
1 ответ
Решение
Как это:
$scope.addMedication = function(med) {
$http.post('/medications', med).success(function(medication) {
$scope.newMedicationTitle = '';
$scope.medications.push(medication);
}).error(function(err) {
// Alert if there's an error
return alert(err.message || "an error occurred");
});
};