- 博客(14)
- 收藏
- 关注
原创 cnpm : 无法加载文件 C:\Users\xx\AppData\Roaming\npm\cnpm.ps1,因为在此系统上禁止运行脚本。
在新电脑上准备装个npm的淘宝镜像版淘宝镜像版地址然后在管理员模式下打开了vscode,执行npm install -g cnpm --registry=https://registry.npmmirror.com查看cnpm -v报错:cnpm : 无法加载文件 C:\Users\xx\AppData\Roaming\npm\cnpm.ps1,因为在此系统上禁止运行脚本。查找解决方法在管理员身份下,运行vscode1 执行 get-ExecutionPolicy,显示 Restric
2021-11-03 07:17:27 214
原创 JavaScript最大安全整数
因为自己找这个问题很多遍了,来记录一下Math.pow(2,53);=>9007199254740992Math.pow(2,53) + 1 === Math.pow(2, 53); //不准确了=>trueMath.pow(2,53) - 1 === Math.pow(2, 53);=>falseNumber.MAX_SAFE_INTEGER=>9007199254740991日常会使用这个Number.MAX_SAFE_INTEGER...
2021-10-23 10:15:50 259
原创 vue3 引入element-plus出错
用淘宝镜像版安装,否则比较慢 cnpm install element-plus --save官方引入方法// main.tsimport { createApp } from 'vue'import ElementPlus from 'element-plus'import 'element-plus/dist/index.css'import App from './App.vue'const app = createApp(App)app.use(ElementPlus)ap
2021-10-22 16:08:40 1524
原创 记录宝塔1个ip挂多个项目
尝试了网上很多种奇怪的方法,最后终于找到一种很方便的1ip多站点的办法。用的是Nginx首先我已经添加了一个站点 域名为 28.105.153.28(默认端口号为80)再次添加站点时成功添加点击该条网站名的设置->域名设置->删除www.test.com的假域名即可请务必在服务器放行8081端口(或者自己设置的端口号)...
2021-10-17 12:25:07 788
原创 无GPU基于anaconda安装tensorflow
添加镜像源,网上随便可以找到的镜像https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/添加源时在末尾加上/两种添加方法第一种 在anaconda的navigator图形化界面中点击Channels–>add–>update channels第二种在anaconda prompt用命令行conda co..
2021-10-12 14:24:12 667
原创 idea好用快捷键 持续更新
快速生成主方法:psvm + Enter快速生成打印语句:sout + Enter选中下一个相同内容:Alt + J选中所有相同内容:Ctrl + Shift + Alt + J查找和替换:Ctrl + R复制一行:Ctrl + D格式化: Ctrl + Alt + L智能补齐左边的数据类型: Ctrl + Alt + V查看提示: Ctrl + Alt +Space...
2021-06-22 11:12:43 65
原创 java设计模式2:工厂模式
在工厂模式中,我们在创建对象时不会对客户端暴露创建逻辑工厂模式依赖什么:接口,继承工厂模式的写法:没有固定写法,通过一个标识来创建对应的实例1 使用字符串识别2 使用类类型识别目录结构://Pet类package factory;public abstract class Pet { public abstract void eat();}//Pet类子类 Catpackage factory;public class Cat extends Pet{
2021-06-22 11:04:23 71
原创 Cannot read property ‘forceUpdate’ of undefined
记录一个uni-app 运行到微信小程序报错Cannot read property ‘forceUpdate’ of undefined
2021-05-02 20:33:40 85
原创 在Vue-cli中使用bootstrap,echarts
bootstrap1 在main.js中import 'bootstrap';import $ from 'jquery';2 在需要引入样式的.vue文件中//这里bootstrap 是从node_modules文件夹下开始查找的import "bootstrap/dist/css/bootstrap.min.css";echarts1 在main.js中import * as echarts from 'echarts';//全局挂载echarts//vue 2.0Vue.p
2021-04-23 12:18:10 160
转载 Vue3.x+ts 使用vuex
转载配置全局属性-vue3配置全局axioslink.vue3+ts 全局挂载以及声明写法link.官方配置link在.vue文件中声明lang=’'ts"可能引起报错此时需要在用到vuex的ts文件里import { createStore,Store } from 'vuex'import {ComponentCustomProperties} from 'vue'declare module '@vue/runtime-core'{ interface State{
2021-03-29 19:11:32 3207
原创 ts decorator(装饰器)使用报错问题
ts decorator(装饰器)使用报错问题简单的写一个装饰器报错信息:Experimental support for decorators is a feature that is subject to change in a future release. Set the ‘experimentalDecorators’ option in your ‘tsconfig’ or ‘jsconfig’ to remove this warning.1.修改tsconfig.js文件另外 t
2021-03-24 15:34:59 1990 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人