生动鞋垫

文章
4
资源
0
加入时间
2年10月24天

电脑端编辑富文本在手机端展示样式有问题

<div v-if="detail" v-html="detail" class="html-box"/>第一种方法:利用正则表达式,对DOM元素替换 if (this.detail) { this.detail = this.activity.replace(/\<img/gi, '<img style="width: 100%;height:auto;"

Linux 判断进程是否运行

问题linux平台多人开发服务器,有时自己运行一个进程在服务器上,但未知原因导致停止运行了,需要添加一个定时任务,用于监控指定进程是否运行方法一个通用的方法,以便使用在不同项目中。思路:定时使用 进程查看 筛选指定进程ps -ef|grep判断是已运行,#!/bin/bashif [ `ps -ef|grep com.qcloud.cos_mig...