mysql查询表 描述等信息

SELECT column_name AS '列名', data_type AS '数据类型', character_maximum_length AS '字符长度', numeric_precision AS '数字长度', numeric_scale AS '小数位数', is_nullable AS '是否允许非空', ...
emer 发布于  2019-11-28 14:30 

ubuntu安装php

https://juejin.im/post/5c99f8eb5188252d9a2f6002 安装 sudo apt-get install nginx 复...
emer 发布于  2019-11-26 18:42 

node网络爬虫

第一步:引入所需要的第三方包 const cheerio = require('cheerio'); const fs = require('fs'); // node.js自带的写模块,后面会用来将爬好的数据写到你的根文件夹中 const Nightmare = require('nightmare'); const nightmare = Nightma...
emer 发布于  2019-11-21 16:32 

Linux增加swap分区大小

查看当前分区情况 free -m 增加 swap 大小, 2G 左右 dd if=/dev/zero of=/var/swap bs=1024 count=2048000 设置交换文件 mkswap /var/swap 立即激活启用交换分区 swapon /var/swap 添加系统引导时自启动运行 vi /etc/fstab 添加一行 /va...
emer 发布于  2019-11-7 11:51 

nuxt安装jquery

npm install jquery --save nuxt.config.js: const webpack=require(‘webpack’); build: { /* ** You can extend webpack config here */ plugins: ...
emer 发布于  2019-11-4 22:08 

vue打包删除console.log

利用UglifyJsPlugin插件来实现项目打包后,删除debugger和console语句 在build/webpack.prod.conf.js文件中添加如下代码 plugin:[ new UplifyJsPlugin(){ uglifyOptions: { compress: { ...
emer 发布于  2019-11-4 21:14 

canvas实现公司印章

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>HTML5 Canvas画印章</title> <script type="text/javascript" src="https://cdn.bootcs...
emer 发布于  2019-11-4 16:08 

nuxt.js配置@nuxtjs/axios

modules: [ // Doc: https://axios.nuxtjs.org/usage '@nuxtjs/axios' ], /* ** Axios module configuration ** See https://axios.nuxtjs.org/options */ axios:{ prox...
emer 发布于  2019-10-31 16:11 

NuxtJS 通过 2种方式引入axios进行异步数据请求

第一种 使用nuxt 提供的 Axios插件 @nuxtjs/axios 1.安装 npm install @nuxtjs/axios -d 2.配置 nuxt.config.js exports default { modules: [ '@nuxtjs/axios', ], axios: ...
emer 发布于  2019-10-31 16:10 

解决在vue中使用swiper loop失效的问题

1.初始化完成后 swiper 轮播出现问题1:不能自动切换 1)问题产生原因: axios 执行get指令是异步请求  即在axios请求数据过程中 initSwiper运行时要绑定的部分元素节点还没有...
emer 发布于  2019-10-26 16:09