摘要:
1. 用??代替||,用于判断运算符左侧的值为null或undefined时,才返回右侧的值 ??运算符是 ES2020 引入,也被称为null判断运算符( Nullish coalescing operator) 它的行为类似||,但是更严 ||运算符是左边是空字符串或false或0等falsy值 阅读全文
摘要:
Nginx中proxy_pass的斜杠问题 - 简书 (jianshu.com) server { listen 80; server_name localhost; location /api1/ { proxy_pass http://localhost:8080; } # http://loc 阅读全文
摘要:
.ivu-form { display: flex; flex-wrap: wrap; .ivu-form-item { width: 50%; margin-bottom:14px; .ivu-form-item-error-tip{ color: #F56C6C; font-size: 12px 阅读全文
摘要:
white-space: nowrap; overflow: hidden; text-overflow: ellipsis; 1.检查一下是否设置了display: inline-block;去掉这个 2.或者给span设置一个宽度 3.省略号颜色黑色想改颜色的话,给父容器设置一个color ov 阅读全文
摘要:
项目中用到的vue版本是 2.4.4 需要升级到2.6.10 将package.json中 "vue": "2.4.4", "vue-template-compiler": "2.4.4" 修改为 "vue": "^2.6.10", "vue-template-compiler": "^2.6.10 阅读全文
摘要:
calc(~'100% - 30px') calc(100% - 30px) 阅读全文
摘要:
num: { type: [String, Number], //String | Number default: '0' } 使用 String | Number 有些eslint会报错 The "num" property should be a constructor.eslintvue/re 阅读全文
摘要:
由图框选出来的地方可以看出不一致。 开始以为是js toFixed四舍五入的问题,材料提交计算出来的百分比值是60.824742268041234。toFixed(2)后得到60.82。 写了个递归如下,可以算出60.83 /** * 获取给定精度的数据 * @param {number} num 阅读全文
摘要:
<template> <router-tab> <template #default="tab"> <div class="title-hack" :title="getMenuInfo(tab, 'title')"> <i class="angle"></i> <span class="tab-t 阅读全文
摘要:
下载文件用到了blob ,代码如下 const blob = new Blob([res]); // const blob = new Blob([res], { type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.s 阅读全文