This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const token = localStorage.getItem('user-token') | |
if (token) { | |
axios.defaults.headers.common['Authorization'] = token | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
created: function () { | |
axios.interceptors.response.use(undefined, function (err) { | |
return new Promise(function (resolve, reject) { | |
if (err.status === 401 && err.config && !err.config.__isRetryRequest) { | |
// if you ever get an unauthorized, logout the user | |
this.$store.dispatch(AUTH_LOGOUT) | |
// you can also redirect to /login if needed ! | |
} | |
throw err; | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// before | |
db.all(`SELECT * FROM POSTS WHERE ID = ${req.params.id};`, function( | |
err, | |
row | |
) { | |
res.send(row); | |
}); | |
// after |
OlderNewer