需要修改host文件 以管理员身份运行cmd(windows) 使用vscode打开host文件: code C:\Windows\System32\drivers\etc\hosts 进入ipaddress.com 分别查找如下几个网址的IP: github.com assets-cdn.gith ...
分类:
其他好文 时间:
2021-03-01 13:43:05
阅读次数:
0
14. 最长公共前缀 编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 ""。 示例 1: 输入:strs = ["flower","flow","flight"] 输出:"fl" 示例 2: 输入:strs = ["dog","racecar","car"] 输出: ...
分类:
其他好文 时间:
2021-03-01 13:02:48
阅读次数:
0
public function getAccesstoken(){ $appid = ''; /*小程序appid*/ $srcret = ''; /*小程序秘钥*/ $tokenUrl="https://api.weixin.qq.com/cgi-bin/token?grant_type=clie ...
分类:
微信 时间:
2021-02-24 13:24:26
阅读次数:
0
只记录一种最简便的方法,在项目根目录下创建vue.config.js,修改module配置: 1 module.exports = { 2 outputDir: 'dist', //build输出目录 3 assetsDir: 'assets', //静态资源目录(js, css, img) 4 l ...
分类:
移动开发 时间:
2021-02-19 13:44:35
阅读次数:
0
###目录结构 ├── build // 构建相关 ├── config // 配置相关 ├── src // 源代码 │ ├── api // 所有请求 │ ├── assets // 主题 字体等静态资源 │ ├── components // 全局公用组件 │ ├── directive // ...
分类:
其他好文 时间:
2021-02-16 12:08:51
阅读次数:
0
【zombie】如何查看并杀死僵尸进程? 赏金Micheal关注 2019.03.31 19:40:15字数 1,016阅读 4,373 僵尸进程定义 In UNIX System terminology, a process that has terminated,but whose parent ...
分类:
系统相关 时间:
2021-01-30 11:48:16
阅读次数:
0
Kernel setup There are two kernel structs, kernel.Kernel and ring0.Kernel. kernel.Kernel contains most of kernel data structures while ring0.kernel on ...
分类:
其他好文 时间:
2021-01-22 12:24:28
阅读次数:
0
Hyperledger Fabric Model 本节概述了Hyperledger Fabric中的关键设计特点,这些特点实现了其全面但可定制的企业区块链解决方案的承诺: Assets — Asset的定义使得在网络上交换几乎任何有货币价值的东西成为了可能,从食品到古董车再到货币期货 Chainco ...
分类:
其他好文 时间:
2021-01-19 11:40:45
阅读次数:
0
一、如果在创建Vue@3.0项目的时候没有选择sass则需要安装 npm install -D sass-loader node-sass 二、创建.scss样式文件 在 src/assets/sass 文件夹下创建 index.scss 文件 三、配置根目录下面vue.config.js: 如果需 ...
分类:
其他好文 时间:
2021-01-14 10:51:15
阅读次数:
0
html: <div v-for="item in lunBoArray" :key="item.id"> <img style="height: 100%;width: 100%" :src="item.url"/> </div> js--data 绑定数据 lunBoArray:[{ url:r ...
分类:
其他好文 时间:
2021-01-14 10:33:45
阅读次数:
0