vue.config.js target: ‘http://127.0.0.1:8000’ api import request from '@/utils/request' export function login(data) { return request({ url: '/auth', method: 'post', data }) } export function getInfo(token) { return request({ url: '/api/v1/userInfo', method: 'get', params: ...
从Chrome的Network看,请求依然是从http://localhost:9528/dev-api来的,因为vue-element-admin提供的代理服务器帮你转发到了http://localhost:8080/api,这个对于浏览器是不透明的,所以浏览器只知道数据来自http://localhost:9528/dev-api,也就不认为有跨域的问题了。 是不是很简单? 调试线上后端API也是一样的道理。
vue.config.js target: 'http://127.0.0.1:8000' api import request from '@/utils/request' export function login(data) { return request({ url: '/auth', method: 'post', data }) } export function getInfo(token) { return request({ url: '/api/v1/userInfo', method: 'get', params: {...
#clone the projectgit clone https://github.com/PanJiaChen/vue-element-admin.git#enter the project directorycdvue-element-admin#install dependencynpm install#developnpm run dev This will automatically openhttp://localhost:9527 Build #build for test environmentnpm run build:stage#build for production ...
配置vscode -> 以调试模式允许 -> 然后在mock的js打断点,调用时就会进入 whateveryoudo commented Apr 21, 2021 • edited 启动的时候会有个compiler错误提示(暂时没找到原因),需要等一会就启动了,你调用接口的时候就会如上图所示,调试和浏览器debugger没啥区别。 Author ChouJoe commented Apr 21, 2021 启动...
1、首先在VSCode中安装:VS Code -DebuggerforChrome,如图: 2、配置Chrome调试器: vscode中断点调试vue 实现vue在VS code中的断点调试。 亲测有效的方法 准备工作vscode和chrome更新到最新版,vscode中安装DebuggerforChrome插件配置vue.config.js文件(如果没有,在根目录下新增一个)配置babel.config.js文件配置launch.js...
隐藏VUE后缀源码后, 但是 在浏览器调试工具中 还是 能看到, webpack 打包Vue组件生成的JS文件, 然后我通过 格式化后, 还是能清晰看到 源码, 请问能隐藏吗? Owner PanJiaChen commented May 14, 2018 • edited 不是很理解你想表达?想让其它用户看不到你的源码? Author youxdd commented May 14, 2018 @...