Quasar CLI with Vite - @quasar/app-vite
我们建议在项目初始化时选择 Axios。
如果你在项目初始化时没有选择 Axios,那么你应该创建一个新的引导文件 axios.js
,它看起来像这样:(在这里你也可以为你的 axios 实例指定额外的设置)
import { boot } from 'quasar/wrappers'
import axios from 'axios'
const api = axios.create({ baseURL: 'https://api.example.com' })
export default boot(({ app }) => {
// for use inside Vue files (Options API) through this.$axios and this.$api
app.config.globalProperties.$axios = axios
// ^ ^ ^ this will allow you to use this.$axios (for Vue Options API form)
// so you won't necessarily have to import axios in each vue file
app.config.globalProperties.$api = api
// ^ ^ ^ this will allow you to use this.$api (for Vue Options API form)
// so you can easily perform requests against your app's API
})
export { axios, api }
content_paste
还要确保 yarn/npm 安装了 axios
包。
提示
如果你正在使用 Quasar CLI,请务必查看 预取功能。
在你的单文件组件方法中的用法如下所示。请注意,在下面的示例中,我们使用的是 Quasar 的 通知插件(通过 $q = useQuasar()
和 $q.notify
),你需要安装它(请参阅上面的链接)。
import { ref } from 'vue'
import { api } from 'boot/axios'
import { useQuasar } from 'quasar'
setup () {
const $q = useQuasar()
const data = ref(null)
function loadData () {
api.get('/api/backend')
.then((response) => {
data.value = response.data
})
.catch(() => {
$q.notify({
color: 'negative',
position: 'top',
message: 'Loading failed',
icon: 'report_problem'
})
})
}
return { data, loadData }
}
content_paste
在 Vuex Actions 中的用法,用于在全局范围内为 axios 添加标题(例如在身份验证期间)
import { api } from 'boot/axios'
export function register ({ commit }, form) {
return api.post('/auth/register', form)
.then(response => {
api.defaults.headers.common['Authorization'] = 'Bearer ' + response.data.token
commit('login', {token: response.data.token, user: response.data.user})
})
}
content_paste
还可以查看 Axios 文档 了解更多信息。