使用全局常量 使用 全局常量文件路径 src\assets\message\message.js src\assets\constant\constant.js 在main.js入口文件进行引入。 //引入全局变量文件 import "@/assets/constant/constant.js"; ...
分类:
其他好文 时间:
2020-08-10 00:06:15
阅读次数:
68
编写脚本实现在指定文件路径下查找文件夹或文件名。 脚本如下: #!/bin/sh # lazy find # GNU All-Permissive License # Copying and distribution of this file, with or without modificatio ...
分类:
系统相关 时间:
2020-08-09 09:19:05
阅读次数:
100
我开发使用的IntelliJIdea, 找到当前问题所在是在其tomcat日志文件中发现的,因此若你还没去查看过该日志文件建议去查看。该日志文件路径在: C:\Users\tom\.IntelliJIdea2017.3\system\tomcat\项目名\logs 在使用阿里的EDAS时,开发中启动 ...
分类:
其他好文 时间:
2020-08-08 17:47:16
阅读次数:
76
1.Linux命令的基本使用 序号 命令 单词 功能 1 ls list 查看当前文件的内容 2 pwd print work directory 查看当前所在文件路径 3 cd[dir_name] change directory 切换文件夹 4 touch[file_name] touch 创建 ...
分类:
系统相关 时间:
2020-08-06 17:02:54
阅读次数:
112
一,从入口文件引入出错: vue-cli 生成项目后,在入口文件 index.html 中引入本地静态js时,出现了错误 Uncaught SyntaxError: Unexpected token < 这个错误属于文件路径的问题。vue 编译时会解析地址,放在 src 文件夹中或者主文件夹中会被编 ...
分类:
Web程序 时间:
2020-08-05 20:59:41
阅读次数:
128
假如利用Python代码写一个很low的软件,去操作文件: 需要的参数: 文件路径:path 打开方式:读,写,追加,读写,写读。。。 编码:utf-8,gbk,Unicode,big5。。。 例: f1 = open('F:\测试.txt',mode='r',encoding='utf-8',) ...
分类:
编程语言 时间:
2020-08-02 16:14:44
阅读次数:
99
private void UpgradeFont(object o) { if (CheckUpdate()) { dt = DateTime.Now; if (string.IsNullOrEmpty(FilePath) || !File.Exists(FilePath)) { ShowTip(" ...
分类:
其他好文 时间:
2020-08-01 21:21:41
阅读次数:
77
路径分隔符: Windows操作系统: \,反斜杠 Linux macOS操作系统:分隔符:/,斜杠 Windows系统是支持Linux分隔符:C:/Ruby/pro/aa.jpeg System.out.println(File.pathSeparator);//; System.out.prin ...
分类:
编程语言 时间:
2020-07-30 10:43:19
阅读次数:
70
1. fasttext 参数含义 - input # training file path (required) 训练文件路径(必须)<br> - lr # learning rate [0.1] 学习率 default 0.1<br> - dim # size of word vectors [1 ...
分类:
其他好文 时间:
2020-07-28 00:30:47
阅读次数:
122