摘要: 打开一个 cmd 窗口 使用 cd 命令切换目录到 C:\redis 运行: redis-server.exe redis.windows.conf redis-cli.exe -h 127.0.0.1 -p 6379 阅读全文
posted @ 2020-07-08 22:26 周千 阅读(601) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta name="viewport" content="initial-scale=1.0, use 阅读全文
posted @ 2020-07-07 17:22 周千 阅读(300) 评论(0) 推荐(0) 编辑
摘要: <button bindtap="btn" id="hello" data-cnName="你好" data-name="{{name}}">Button按钮</button> data:{ name: '名字 '},btn(e){ console.log(e.currentTarget.id); 阅读全文
posted @ 2020-06-17 09:34 周千 阅读(1998) 评论(0) 推荐(0) 编辑
摘要: package com.gxuwz.core.util; import java.io.IOException;import java.io.OutputStream; import org.apache.poi.hssf.usermodel.HSSFCell;import org.apache.p 阅读全文
posted @ 2020-06-09 23:44 周千 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 创建命令 mkdir [文件夹名] 移动命令 mv [要移动的文件夹或文件] [要移动的路径] 拷贝命令 安装rpm包 rpm -ivh rpmname.rpm 卸载rpm包 rpm -e rpmname.rpm 压缩文件 zip [压缩后的文件名,例如test.zip] [要压缩的文件,例如 ./ 阅读全文
posted @ 2020-06-09 00:14 周千 阅读(52) 评论(0) 推荐(0) 编辑
摘要: centos7以后是这样的,7以前就是别的版本了 1.systemctl get-default命令获取当前模式 2.systemctl set-default graphical.target 修改启动模式(修改为图形界面,要是修改为命令行就multi-user.target) 2.systemc 阅读全文
posted @ 2020-06-07 10:18 周千 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 用到的技术 vuex 全局数据 window.addEventListener("beforeunload",()=>{ }) 监听页面刷新 使用localStorage 临时存储数据 思路:在页面刷新的时候,将vuex中的数据存储到localstorage ,然后刷新结束后再将localstora 阅读全文
posted @ 2020-06-06 20:05 周千 阅读(2759) 评论(0) 推荐(0) 编辑
摘要: npm install -g vue-cli vue init webpack vuehr cd vuehr npm run dev 阅读全文
posted @ 2020-05-30 22:48 周千 阅读(307) 评论(0) 推荐(0) 编辑
摘要: activity_main.xml源码<?xml version="1.0" encoding="utf-8"?><androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/ 阅读全文
posted @ 2020-05-28 20:03 周千 阅读(438) 评论(0) 推荐(0) 编辑
摘要: CentOS 7.0默认使用的是firewall作为防火墙 查看防火墙状态 firewall-cmd --state 1 停止firewall systemctl stop firewalld.service 1 禁止firewall开机启动 systemctl disable firewalld. 阅读全文
posted @ 2020-05-22 11:20 周千 阅读(151) 评论(0) 推荐(0) 编辑