logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

新命令在Centos 7快速开启端口

最近安装了CentOS7.3.1611之后,使用redis时,发现无法使用iptables控制Linux的端口,百度之后发现Centos 7.3使用firewalld代替了原来的iptables。下面这篇文章将给大家介绍如何在Centos 7.3中使用firewalld快速开发端口,一、介绍CentOS 7 默认没有使用iptables,所以通过编辑iptables的配置文件来开启80端口是不可以

#redis
element ui 中el-button自定义icon图标不生效问题解析

element ui 中el-button自定义icon图标不生效问题解析

IOS和安卓展示时间兼容问题

解决小程序在 IOS机上无法兼容横杠‘-’问题,原因:IOS无法识别日期中的横杠’-'和‘ ’// 接口获取的日期let oldTime = "2021-12-30 22:22:30";//转换成符合IOS展示的日期let newTime = oldTime.replace(/\-/g,'/');console.log(newTime);//"2021/12/30 22:22:30"若需要将以上格

#javascript#前端#开发语言
使用uni-app时,使用的时间戳转换成日期(年月日)代码段

// 时间戳转换成日期getdate(value) {if (!value) return '';value = parseInt(value) * 1000var now = new Date(value);var year = now.getFullYear();var month = now.getMonth() + 1;if (month < 10) {month = '0' + m

#uni-app
uview框架u-form表单校验,rules校验对象中对象的值(解决 当form属性嵌套对象时未取到值的问题)

解决:uview框架 form表单校验问题 当form属性嵌套对象时未取到值的问题

#html
到底了