js 判断字符串是否包含了指定的内容,并封装,方便复用
代码
export function doesItInclude(string, stringBody) {
var str = new RegExp(string);
return str.test(str...
yekong
3年前 (2022-04-10)
喜欢
在用nodejs仿写单页模板扒手的时候,需要处理下载的css文件内的背景图片和字体文件,在处理前,需要先匹配到对应的文件,这里用正则进行文件匹配。
匹配代码
var pattern = /url\((\S*?)\)/g
console.log(res.data.match(pat...
yekong
3年前 (2022-04-08)
喜欢
实例
判断字符串是否是以’//‘开头,如果是则追加’http:‘
var u="//www.wanjunshijie.com"
var url = u
if (u.startsWith('//')) {
url = 'h...
yekong
3年前 (2022-04-08)
喜欢
that.data.remark = that.data.remark.replace(/https:\/\/www.wanjunshijie.com\/file/g, configs.uploadImg)
that.data.remark = that.data.remark....
yekong
3年前 (2022-04-02)
喜欢
金额相加,金额可能是字符串,所以需要先转为数字,再进行相加,金额需要保留两位小数,所以需要对小数做一下处理
(Number(res.data.money) + Number(res.data.frozenMoney)).toFixed(2)
...
yekong
3年前 (2022-04-01)
喜欢
js代码
var num =2.446242342;
num = num.toFixed(2); // 输出结果为 2.45
vue过滤器
filters: {
getnum: function(data) {
var num = data.toFixed(2)...
yekong
3年前 (2022-03-30)
喜欢
组件对参数做处理并返回,判断参数是否为数字,如果是数字则带上元,如果没有则不带。
<template>
<div>
{{ newMoney }}
</div>
</template>
<script>
exp...
yekong
3年前 (2022-03-26)
喜欢
使用entries
for (const [index, item] of that.tableData.entries()) {
await that.getdata2(item, index)
}
...
yekong
3年前 (2022-03-25)
喜欢
字符串过滤
title.replace(/^(.).*(.)$/, "$1******$2")
处理前
都是收费到第三方
处理后
都******方
...
yekong
3年前 (2022-03-18)
喜欢
data-wow-delay="0.5s"
<items class="wow bounceInRight" data-wow-delay="0.5s">
<nianchanzhi...
yekong
3年前 (2022-03-13)
喜欢