在webpack.base.conf.js中的vue配置中加入ts解析 { test: /\.vue$/, loader: 'vue-loader', options: { loaders: { ts: [ { loader: 'ts-loader', options: { appendTsSuff ...
分类:
Web程序 时间:
2021-04-14 11:51:55
阅读次数:
0
vue中安装node-sassnpm install node-sass --save-dev1出现上面图中问题 解决办法:vscode里,打开终端,输入下面的内容先输入(在管理员模式下打开) npm install --global --production windows-build-tools ...
分类:
编程语言 时间:
2021-04-14 11:49:56
阅读次数:
0
SGA,系统全局盘区(System Globa Area),大的共享内存段,所有Oracle进程都在某点访问 PGA,进程全局盘区(Process Global Area),对单一进程或线程私有的 UGA,用户全局盘区(USER Global Area),与会话相关的内存,在SGA或PGA中,取决于 ...
分类:
数据库 时间:
2021-04-14 11:42:35
阅读次数:
0
查看所有配置,用户信息和文件位置 git config --list --show-origin 用户信息配置 git config --global user.name "user_name" git config --global user.email "user_email@qq.com" 本 ...
分类:
其他好文 时间:
2021-04-13 12:23:36
阅读次数:
0
IDEA中使用Tomcat解决中文乱码问题 首先在Tomcat的Configurations中配置VM options: -Dfile.encoding=UTF-8 如果操作1不行,就设置IDEA的编码: 在Setting中选择File Encodings: Global Encoding选择UTF ...
分类:
其他好文 时间:
2021-04-13 12:20:15
阅读次数:
0
在wx上建立global的变量,然后request的时候,发送出去 关键代码,在请求体外 const app = getApp(); 在请求体内 historyId:app.globalData.zhanbuYao.data.historyId, 在方法体第一行的console.log 可以看到,取 ...
分类:
微信 时间:
2021-04-13 12:05:18
阅读次数:
0
第一种方法:在pom.xml文件中增加如下标签 1 <build> 2 <resources> 3 <resource> 4 <directory>src/main/resource</directory> 5 <includes> 6 <include>**/*.xml</include> 7 < ...
分类:
其他好文 时间:
2021-04-13 11:47:23
阅读次数:
0
Mybatis的CRUD操作 我们在创建第一个项目自后,来进行数据库的操作; Mybatis在JDBC的基础上,对sql语句的执行进行了简化。 1.准备工作 1.1.创建我们的第二个项目,项目结构如下: 1.2.在pom.xml文件中引入资源文件导出的配置文件 <build> <resources> ...
分类:
其他好文 时间:
2021-04-13 11:46:49
阅读次数:
0
String removeDuplicateLetters(String s) { Stack<Character> stk = new Stack<>(); // 维护一个计数器记录字符串中字符的数量 // 因为输入为 ASCII 字符,大小 256 够用了 int[] count = new i ...
分类:
其他好文 时间:
2021-04-13 11:42:41
阅读次数:
0
源码安装nginx For ubuntu:18.04 apt -y install build-essential libtool libpcre3 libpcre3-dev zlib1g-dev openssl net-tools curl wget wget -P /tmp http://ngi ...
分类:
其他好文 时间:
2021-04-12 12:27:54
阅读次数:
0