It happens that everything works in my laravel/vue.js application excluding the login that I have to implement now.
I'm using JWT and when I try to login from my Vue template it shows this, but when I test the route created on the back end, it returns the Token without any problem, like this.
Here is the code of my login component of the front-end app...
<script>
import bar from '../bar.vue'
import axios from 'axios';
export default {
components: {
'bar': bar,
},
data(){
return {
email: '',
password: ''
}
},
methods: {
login(){
axios.post('http://localhost:8000/api/signin',
{
email: this.email,
password: this.password
},
{
headers: {'X-Requested-With': 'XMLHttpRequest'}
}
)
.then(
(response) => console.log(response)
)
.catch(
(error) => console.log(error)
);
}
}
}
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire