Как правильно делать POST запрос с Axios.
methods: {
clear () {
this.$refs.login.reset()
},
logIn: function () {
Axios.post('http://192.168.1.116:8000', {
login: this.name,
password: this.password
})
.then(()=>{
console.log('qqwe')
this.$router.replace(this.$route.query.redirect || '/tamam')
})
.catch(function (err) {
console.log('q')
})
},
}
Есть такой скрипт. Правильно ли? Сервер показывает пустые значения.
methods: {
clear () {
this.$refs.login.reset()
},
logIn: function () {
Axios.post('http://192.168.1.116:8000', {
login: this.name,
password: this.password
}).then((res) => {
console.log('Ответ сервера:', res)
this.$router.replace(this.$route.query.redirect || '/tamam')
})
.catch(function (err) {
console.log('err', err)
})
},
}
Виртуальный выделенный сервер (VDS) становится отличным выбором
Finding Rows with the Maximum Value of a Column by Group
имеются две таблицы с разными полями таблица test: id,name,address,phone,birthday,company,about