Я пытаюсь отправить результаты surveyjs в мой API.
В смонтированном () я делаю запрос GET
с vue-resource
, получаю вопросы из моего дБ и затем устанавливаю surveyjs.Для отправки результатов я попытался использовать this.$http.post
в функции surveyJS onComplete
, но получил Cannot read property 'post' of undefined
.Также я попытался поместить часы в переменную result
, но это не сработало.
mounted() {
this.$http
.get("myAPI")
.then(res => res.json())
.then(questions => {
this.questions = questions;
this.survey = new SurveyVue.Model(this.questions.pesquisa);
this.survey.locale = "pt";
this.survey.onComplete.add(function(survey) {
this.result = survey.data;
this.$http
.post(
`myAPI`,
this.result,
{ headers: { "Content-Type": "application/json" } }
)
.then(response => {
console.log(response);
UIkit.notification({
message: "Success",
pos: "top-center",
status: "success"
});
})
.catch(error => {
console.log(error);
UIkit.notification({
message: "Erro",
pos: "top-center",
status: "danger"
});
});
});
})
.catch(error => {
console.log(error);
UIkit.notification({
message: "Error",
pos: "top-center",
status: "danger"
});
});
}