当前位置:   article > 正文

vue3+vite(vite.config.ts)配置跨域_vue3 vite.config.ts server 配置跨域

vue3 vite.config.ts server 配置跨域

最近在写前端的时候想调用一下本地的后端接口,接口地址是8889。所以在前端配置了跨域请求,记录一下。

首先在vite.cofig.ts中配置,完整代码:

注意:要把localhost换成127.0.0.1

  1. import { defineConfig } from 'vite'
  2. import vue from '@vitejs/plugin-vue'
  3. export default defineConfig({
  4. plugins: [vue()],
  5. server: {
  6. proxy: {
  7. // 使用 proxy 实例
  8. '/api': {
  9. target: 'http://127.0.0.1:8889',//注意这里不能用http://localhost:8889
  10. changeOrigin: true,
  11. rewrite: (path) => path.replace('/api','')
  12. },
  13. }
  14. }
  15. })

然后我们调用接口的时候如下:

  1. import axios from "axios";
  2. const userName = ref("");
  3. const passWord = ref("");
  4. const api_login = async (username: String, password: String) => {
  5. try {
  6. const response = await axios.post(`/api/user/login`, {
  7. userName: username,
  8. passWord: password,
  9. });
  10. if (response.data.success) {
  11. console.log("Login successful");
  12. router.push("/home");
  13. } else {
  14. console.log("Login failed");
  15. }
  16. } catch (error) {
  17. console.error("Error logging in:", error.message);
  18. }
  19. };

测试,可以看到成功调通了:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/598106
推荐阅读
相关标签
  

闽ICP备14008679号