[front] zmiana stanu na zalogowany z frotnu na GO

This commit is contained in:
pawlaczyk 2019-01-13 01:32:56 +01:00
parent 542320f496
commit bae651c4e3

View File

@ -64,7 +64,6 @@ export default {
if (this.$refs.form.validate()){ //valinnaj JS
axios.post("http://127.0.0.1:3000/api/loginUserView" ,
{"login": this.userLogin, "password": this.userPassword, "TokenZJS": "Ala"},
{ crossdomain: true })
.then(response=>{
console.log("Response data: ", response.data); //printuje Tokena
@ -81,6 +80,14 @@ export default {
//dodanie loginu do listy wszystkich zalogowanych użytkowników
this.$store.dispatch('addLoggedUser', localStorage.getItem('user'))
axios.post("http://127.0.0.1:3000/api/updateLoggedUserView", {"login": this.userLogin} , //aktualizacja stanu uzytkownika w bazie mysql
{ crossdomain: true })
.then(response=>{
console.log("Aktualizowanie stanu uzytkownika w mysql ", response.data); //printuje Tokena
}).catch(error=>{
console.log("ERROR: ", error.response.data)
});
console.log("Wszyscy uzytkownicy: ", this.$store.getters.allUsers)