工作日常笔记

2024-09-23

winSCP连接出错/h2]

无法初始化SFTP协议。主机是否运行SFTP服务器?

winspc 需要更新数据库密码

 

[h1]2023-08-08[/h1]

[h2]node、sass 对应版本

node 14,    node-sass 4.14.1,    sass-loader 7.3.1

node 16,    node-sass 6.0.1,    sass-loader 10.0.1

8以前使用 data
8 9使用 prependData
10 使用 additionalData

// 忽略 commander@11.0.0: The engine "node" is incompatible with this module. Expected version ">=16". Got "14.20.0"
yarn config set ignore-engines true

 

2023-07-13

名句

水的颜色知深浅

水清则浅

水绿则深

水黑则渊

水蓝则广

水黄则急

2023-06-28

vuex actions中的store

({ commit, dispatch, getters, rootGetters, rootState, state })

rootState.module1.title

commit('module1/mutationsName',{val:'我是val值'},{root:true})

dispatch('module1/actionName',{val:'我是val值'},{root:true})

rootState.module1.title

rootGetters.module1.titile

2023-06-21

url重复/

http://localhost:9527/dev-api/api/project/24

http://localhost:9527/dev-api/api/project//24

本地开发没有出错。打包线上请求出错。

2023-05-31

名句

从外打破的是食物,从内打破的是生命。

2023-05-13

copy

const _input = document.createElement("input");
_input.value = res.data;
document.body.appendChild(_input);
_input.select();
document.execCommand("Copy");
_input.remove();

 

2023-05-10

element-ui tree组件默认高亮

  1. this.$nextTick()
  2. this.$refs.treeRef.setCurrentKey(id)

2023-05-09

vue2 深度监听新旧值

  1. computed克隆要监听的数据
  2. watch克隆后的数据

2023-05-06

想法

代码自身会告诉你它是什么逻辑运行。

2023-05-05

名句

《古尊宿语录》:

寒山:世间谤我、欺我、辱我、笑我、轻我、贱我、恶我、骗我、如何处之乎?
拾得:只需忍他、让他、由他、避他、耐他、敬
他、不要理他、再待几年,你且看他。

2023-05-04

css

  1. 美化滚动条
    ::-webkit-scrollbar {
      width: 6px;
      height: 6px;
    }
    
    ::-webkit-scrollbar-thumb {
      width: 6px;
      background-color: #aaa;
      border-radius: 6px;
      cursor: pointer;
      opacity: 0.3;
      transition: 0.3;
    }
    
    ::-webkit-scrollbar-track:vertical {
      background-color: #ccc;
      border-radius: 6px;
    }
    

2023-04-29

vue

  1. 组件props可以通过this._props获取

2023-04-22

css

  1. .parent:has(> .child) { color: red }
  2. .parent:has(.child) { color: red }