请求大佬帮忙解决一下vue脚本架安装有问题

 在win+r中输入cmd然后查看环境发现vue脚本架下载有问题

C:\Users\cqq>node -v
v14.15.3

C:\Users\cqq>npm install -g @vue/cli
npm WARN invalid config registry=""
npm WARN invalid config Must be a full url with 'http://'
npm WARN invalid config registry=""
npm WARN invalid config Must be a full url with 'http://'
npm WARN deprecated subscriptions-transport-ws@0.11.0: The `subscriptions-transport-ws` package is no longer maintained. We recommend you use `graphql-ws` instead. For help migrating Apollo software to `graphql-ws`, see https://www.apollographql.com/docs/apollo-server/data/subscriptions/#switching-from-subscriptions-transport-ws    For general help using `graphql-ws`, see https://github.com/enisdenjo/graphql-ws/blob/master/README.md
npm ERR! cb() never called!

npm ERR! This is an error with npm itself. Please report this error at:
npm ERR!     <https://npm.community>

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\cqq\AppData\Roaming\npm-cache\_logs\2022-10-05T02_39_30_836Z-debug.log

C:\Users\cqq>npm config set registry https://registry.npm.taobao.org
npm WARN invalid config registry=""
npm WARN invalid config Must be a full url with 'http://'
npm WARN invalid config registry=""
npm WARN invalid config Must be a full url with 'http://'

C:\Users\cqq>vue -V
'vue' 不是内部或外部命令,也不是可运行的程序
或批处理文件。

C:\Users\cqq>node -v
v14.15.3

C:\Users\cqq>vue -V
'vue' 不是内部或外部命令,也不是可运行的程序
或批处理文件。

C:\Users\cqq> npm install -g @vue/cli --registry https://reg
npm ERR! code ENOTFOUND
npm ERR! errno ENOTFOUND
npm ERR! network request to https://reg/@vue%2fcli failed, reason: getaddrinfo ENOTFOUND reg
npm ERR! network This is a problem related to network connectivity.
npm ERR! network In most cases you are behind a proxy or have bad network settings.
npm ERR! network
npm ERR! network If you are behind a proxy, please make sure that the
npm ERR! network 'proxy' config is set properly.  See: 'npm help config'

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\cqq\AppData\Roaming\npm-cache\_logs\2022-10-05T02_43_04_504Z-debug.log
 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 4
    评论
Vue Admin 框中使用 CORS 解决跨域问题可以通过以下步骤: 1. 安装 axios:首先,确保你的项目中已经安装了 axios,可以使用以下命令进行安装: ```bash npm install axios --save ``` 2. 创建一个 axios 实例:在你的项目中创建一个独立的 axios 实例,用于发送跨域请求。在这个实例中,你可以设置一些默认的请求头和其他配置。 ```javascript // src/utils/axios.js import axios from 'axios'; const instance = axios.create({ baseURL: 'https://api.example.com', // 设置请求的基础URL timeout: 5000, // 设置请求超时时间 withCredentials: true, // 允许携带跨域凭证(例如:cookies) }); export default instance; ``` 3. 在需要发送跨域请求的地方使用 axios 实例:在你的组件或其他地方,使用创建的 axios 实例来发送跨域请求。 ```javascript // src/views/Example.vue <template> <div> <button @click="fetchData">Fetch Data</button> </div> </template> <script> import axios from '@/utils/axios'; export default { methods: { fetchData() { axios.get('/data') .then(response => { console.log(response.data); }) .catch(error => { console.error(error); }); }, }, }; </script> ``` 在上述示例中,我们使用了创建的 axios 实例来发送 GET 请求,并访问了`/data`路径。由于我们已经在 axios 实例中设置了基础URL,实际发送的请求将是`https://api.example.com/data`。 请注意,在服务器端也需要设置相应的 CORS 头来允许跨域请求。你可以参考前面提到的服务器端设置响应头部分的示例代码来设置服务器端的 CORS 头。 以上是在 Vue Admin 框中使用 CORS 解决跨域问题的一种方法,你可以根据实际需求和项目结构进行相应的调整。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值