Я отправляю данные в .Net Web Api через почтовый запрос Angular 6, но все значения поступают на сервер как нулевые.Любые идеи о том, почему?
Угловой пост:
var vacancy = {
'number': this.vacancyForm.get('number').value,
'requester': this.vacancyForm.get('requester').value,
'date': this.vacancyForm.get('date').value,
'position': this.vacancyForm.get('position').value,
'replacement': this.vacancyForm.get('replacement').value,
'discharge_date': this.vacancyForm.get('discharge_date').value,
'candidate': this.vacancyForm.get('candidate').value,
'contract_type': this.vacancyForm.get('contract_type').value,
'working_day': this.vacancyForm.get('working_day').value,
'annual_salary': this.vacancyForm.get('annual_salary').value,
'business_division': this.vacancyForm.get('business_division').value,
'company': this.vacancyForm.get('company').value,
'workplace': this.vacancyForm.get('workplace').value,
'personal_division': this.vacancyForm.get('personal_division').value,
'department': this.vacancyForm.get('department').value,
'cost_center': this.vacancyForm.get('cost_center').value,
'workplace_address': this.vacancyForm.get('workplace_address').value
}
const headers = new HttpHeaders().set('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
var postReturn = this.http.post<any>(environment.apiEndpoint + "/Api/Vacancy", JSON.stringify(vacancy), { headers })
.subscribe(
(val) => {
console.log('POST call successful value returned in body',
val);
},
response => {
console.log('POST call in error', response);
},
() => {
console.log('The POST observable is now completed.');
});
.Net Post метод в Контроллере:
[HttpPost]
public IEnumerable<string> Post(Vacancy vacancy)
{
if (vacancy == null)
{
throw new System.ArgumentNullException(nameof(vacancy));
}
return new string[] { "I'm doing just nothing but returning a string." };
}
. Net Вакансия класс модели:
public class Vacancy
{
public int number { get; set; }
public string requester { get; set; }
public DateTime date { get; set; }
public string position { get; set; }
public string replacement { get; set; }
public DateTime discharge_date { get; set; }
public string candidate { get; set; }
public string contract_type { get; set; }
public string working_day { get; set; }
public string annual_salary { get; set; }
public string business_division { get; set; }
public string company { get; set; }
public string workplace { get; set; }
public string personal_division { get; set; }
public string department { get; set; }
public string cost_center { get; set; }
public string workplace_address { get; set; }
}
Я также пытался удалить JSON.stringify, но с теми же результатами, объект Vacancy всегда получает нулевые значения.
Любая помощь будет высоко оценена.
Спасибо.