摘要: 错误示范1(会影响其他页面的样式): <style> .avue-crud__menu { display: none; } </style>错误示范2(样式无效): <style lang="scss" scoped> .avue-crud__menu { display: none; } </s 阅读全文
posted @ 2021-05-07 16:59 pxuan 阅读(2419) 评论(0) 推荐(0) 编辑
摘要: https://avuejs.com/doc/crud/crud-dochttps://www.bookstack.cn/read/avue-2.x/391487d752fdf241.md表格属性 width: “100%”,//表格宽度 calcHeight: “auto”,//表格高度差(主要用 阅读全文
posted @ 2020-12-16 14:27 pxuan 阅读(12506) 评论(0) 推荐(0) 编辑
摘要: Dockerfile From centos:8 COPY ./kplayer /kplayer WORKDIR /kplayer EXPOSE 80 RUN chmod +x kplayer 查看配置文件cat /etc/kplayer.yaml 容器启动./kplayer -c /etc/kpl 阅读全文
posted @ 2020-12-03 10:37 pxuan 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 查看 端口所在线程 lsof -i:81COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAMEjava 1867 pengxuan 189u IPv6 0x3a47bb02362d2d59 0t0 TCP *:hosts2-ns (LISTEN)java 阅读全文
posted @ 2020-11-12 10:52 pxuan 阅读(1921) 评论(0) 推荐(0) 编辑
摘要: 命令行 pengxuan$ ./ffplay -fs -i http://localhost:81/files/20201030/1443e99b31bc4fa48af7f98c517006c0.jpg -volume 1 音量 loop 1 循环次数./ffplay 启动ffplay -fs 全屏 阅读全文
posted @ 2020-10-30 17:22 pxuan 阅读(167) 评论(0) 推荐(0) 编辑
摘要: git clone http://pxuan:xxxxxxxxxx@172.16.1.128/smallcheck/citygrid-api.git 阅读全文
posted @ 2020-10-21 11:42 pxuan 阅读(800) 评论(0) 推荐(0) 编辑
摘要: ResultMap的写法 <resultMap id="UserAndItemsResultMap" type="com.iot.mybatis.po.User"> <id column="user_id" property="id"/> <result column="username" prop 阅读全文
posted @ 2020-09-02 10:33 pxuan 阅读(979) 评论(0) 推荐(0) 编辑
摘要: 从Docker Hub查找所有镜像名包docker search tomcat收藏数大于10的镜像docker search -s 10 tomcat从Docker Hub下载tomcat最新版镜像docker pull tomcat创建本地java镜像 vi dockerfile FROM tom 阅读全文
posted @ 2020-07-12 18:38 pxuan 阅读(726) 评论(0) 推荐(0) 编辑
摘要: Mac系统一般都自带了Apache和PHP环境,python2.7 只是默认情况下没有开启。 1、打开终端,查看本机的Apache版本: apachectl -version 2、查看本机的PHP版本: php -version 3、开启Apache sudo apachectl start 关闭A 阅读全文
posted @ 2020-07-05 09:44 pxuan 阅读(431) 评论(0) 推荐(0) 编辑
摘要: 数组filter方法对数组元素进行过滤 /** * @method reduce * @param {number} item 当前迭代的数组元素 * @param {number} index 当前迭代的数组元素下下标 * @param {array} array 原数组 */ const boo 阅读全文
posted @ 2020-06-24 10:28 pxuan 阅读(128) 评论(0) 推荐(0) 编辑