上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 88 下一页
摘要: 参考链接: https://cloud.tencent.com/developer/article/1561750 安装expect: brew install expect 如果遇到 man 目录的权限问题可以执行以下命令后在执行安装命令: sudo chown -R $(whoami) /usr 阅读全文
posted @ 2022-01-15 14:37 徐同保 阅读(3) 评论(0) 推荐(0) 编辑
摘要: brew install expect 阅读全文
posted @ 2022-01-15 14:28 徐同保 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 官网: https://brew.sh/ 知乎推荐的安装方法: https://zhuanlan.zhihu.com/p/90508170?utm_source=wechat_session 安装指令: cd "$(brew --repo)/Library/Taps/" cd homebrew gi 阅读全文
posted @ 2022-01-15 14:12 徐同保 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 解决方案: 阅读全文
posted @ 2022-01-15 10:01 徐同保 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1.安装iTerm2 https://iterm2.com/ 2.安装oh-my-zsh https://ohmyz.sh/ git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh cp ~/.oh-my-zsh/temp 阅读全文
posted @ 2022-01-09 17:42 徐同保 阅读(1) 评论(0) 推荐(0) 编辑
摘要: const service = axios.create({ baseURL: process.env.VUE_APP_BASE_API, // 环境变量base接口地址 url = base url + request url withCredentials: true, // 跨域请求时发送Co 阅读全文
posted @ 2022-01-05 15:07 徐同保 阅读(5) 评论(0) 推荐(0) 编辑
摘要: https://www.avuejs.com/crud/crud.html#%E6%99%AE%E9%80%9A%E7%94%A8%E6%B3%95 <template> <basic-container> <avue-crud :data="data" :option="option" v-mod 阅读全文
posted @ 2022-01-04 18:53 徐同保 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 1. alert(1=='1') // true alert(1 '1') // false 2. if ('a' in window) { var a = 10 } alert(a) // 10 3. num = 123 function fun1() { var num = 123 return 阅读全文
posted @ 2021-12-29 20:56 徐同保 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1. // 输出1和3, 2不会输出 const p = new Promise(() => { console.log(1) }) p.then((res) => { console.log(2) }) console.log(3) 2. // 先输出3,在输出then:success1,不会输出 阅读全文
posted @ 2021-12-28 17:46 徐同保 阅读(0) 评论(0) 推荐(0) 编辑
摘要: import React, { useState, useEffect } from 'react'; const FancyInput = React.forwardRef((props, ref) => ( <input ref={ref} placeholder={props.placehol 阅读全文
posted @ 2021-12-23 16:09 徐同保 阅读(4) 评论(0) 推荐(0) 编辑
上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 88 下一页