上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: 解决方案: yum加参数--nogpgcheck yum install docker --nogpgcheck 阅读全文
posted @ 2020-08-25 10:50 科技改变未来☆ 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 需要包装成一个类才行 阅读全文
posted @ 2020-08-18 15:26 科技改变未来☆ 阅读(228) 评论(0) 推荐(0) 编辑
摘要: for index, item in enumerate(Foo()): print "index: ", index, " item: ",item 注意: 要用enumerate,即可支持索引,否则会报错 阅读全文
posted @ 2020-08-14 17:22 科技改变未来☆ 阅读(227) 评论(0) 推荐(0) 编辑
摘要: pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple 将清华的镜像源设置为默认的镜像源 临时更换源 pip install -i https://pypi.tuna.tsinghua.edu.cn/simpl 阅读全文
posted @ 2020-08-13 15:12 科技改变未来☆ 阅读(140) 评论(0) 推荐(0) 编辑
摘要: @marginList: weixin, wangyi; //margin-left函数 .ml-loop(@list,@i:1,@val:extract(@list,@i)) when (length(@list)>=@i) { .icon-@{val} { // margin-left: @va 阅读全文
posted @ 2020-08-12 10:57 科技改变未来☆ 阅读(327) 评论(0) 推荐(0) 编辑
摘要: 使用快捷键打开设置: ctrl + shift + p 然后输入setting 替换成以下配置 { "window.zoomLevel": 1, "files.associations": { "*.wpy": "vue", "*.cjson": "jsonc", "*.wxss": "css", 阅读全文
posted @ 2020-08-10 19:17 科技改变未来☆ 阅读(479) 评论(0) 推荐(0) 编辑
摘要: public void WriteLog(string msg) { string filePath = AppDomain.CurrentDomain.BaseDirectory + "Log"; if (!Directory.Exists(filePath)) { Directory.Creat 阅读全文
posted @ 2020-08-07 15:43 科技改变未来☆ 阅读(161) 评论(0) 推荐(0) 编辑
摘要: $ pip3 install PyMySQL 阅读全文
posted @ 2020-08-05 23:05 科技改变未来☆ 阅读(62) 评论(0) 推荐(0) 编辑
摘要: props:[lang], data(){ return{ lang:[] } 这种情况,一般是父组件传了个参数lang,但是在data里面又定义了lang 把data里面的lang删除就行了。 阅读全文
posted @ 2020-07-17 15:22 科技改变未来☆ 阅读(432) 评论(0) 推荐(0) 编辑
摘要: 需要安装个全局的cross-env才行(要加上-g参数) npm install -g cross-env –save-dev 阅读全文
posted @ 2020-07-16 17:05 科技改变未来☆ 阅读(389) 评论(0) 推荐(0) 编辑
摘要: Object.keys(对象).length 阅读全文
posted @ 2020-07-16 10:50 科技改变未来☆ 阅读(629) 评论(0) 推荐(0) 编辑
摘要: 父页面: <div> <hello @showMsg="show"> </div> <script> export default { methods:{ show(){ console.log('子页面点击了'); } } } </script> 子页面: <div> <div @click="s 阅读全文
posted @ 2020-07-14 21:04 科技改变未来☆ 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 第一步: 第二步: 第三步:单击箭头位置快速全选 第四步:右键选择“将结果另存为” 阅读全文
posted @ 2020-07-14 14:52 科技改变未来☆ 阅读(279) 评论(0) 推荐(0) 编辑
摘要: 解决办法:Ctrl+Alt+Space(空格) 阅读全文
posted @ 2020-07-14 09:39 科技改变未来☆ 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 注意:一定要先清数据再请求,否则请求数据还没回来,会渲染到旧数据 阅读全文
posted @ 2020-07-10 20:51 科技改变未来☆ 阅读(398) 评论(0) 推荐(0) 编辑
摘要: watch: { Model: function () { this.$nextTick(function () {//////方法 this.bindChart(); }); } }, Model是要监控的属性,这个属性渲染完成就会触发。 阅读全文
posted @ 2020-07-08 15:26 科技改变未来☆ 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 右键点击桌面上的此电脑图标,在弹出菜单中选择“属性”菜单项。 第二步: 阅读全文
posted @ 2020-07-07 19:15 科技改变未来☆ 阅读(445) 评论(0) 推荐(0) 编辑
摘要: 第一种方式:(推荐) 需要注意的是不能用单引号,而是要用反引号 :title="`字符串${xx}`" 第二种: 注意:这种就是单引号的 :title="'字符串' + xx" 阅读全文
posted @ 2020-07-07 11:00 科技改变未来☆ 阅读(440) 评论(0) 推荐(0) 编辑
摘要: 注意:有build文件使用该方式配置(项目是vue-cli): 【前提下不是vue-cli的方式创建的项目,分辨方法就是没有build文件夹】另一种方式是在项目根目录新建一个vue.config.js 阅读全文
posted @ 2020-07-02 16:09 科技改变未来☆ 阅读(585) 评论(0) 推荐(0) 编辑
摘要: 解决方案: 把css和js文件放到static文件中即可 阅读全文
posted @ 2020-06-29 11:24 科技改变未来☆ 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 执行以下命令: 找到models-master根目录下的setup.py文件 python setup.py install 执行了上面的命令还是不行,写上路径文件就可以了。注意:要看你pycharm用哪个版本,就去哪个版本下面建文件,不要放错了。比如你用python3.5,不要把文件放到pytho 阅读全文
posted @ 2020-06-26 15:53 科技改变未来☆ 阅读(541) 评论(0) 推荐(0) 编辑
摘要: 下载QQ邮箱手机版 选择gmail进行注册,注册完用谷歌的邮箱进行登录即可 阅读全文
posted @ 2020-06-22 18:06 科技改变未来☆ 阅读(6) 评论(0) 推荐(0) 编辑
摘要: root: C:\Users\zhong\AppData\Roaming\nvm path: C:\Program Files\nodejs arch: 64 proxy: none node_mirror: http://npm.taobao.org/mirrors/node/ npm_mirro 阅读全文
posted @ 2020-06-22 15:47 科技改变未来☆ 阅读(1511) 评论(0) 推荐(0) 编辑
摘要: 主要原因是props字段名用了驼峰命名 注意:vue的组件命名和props传值字段命名都要全部小写 阅读全文
posted @ 2020-06-02 19:31 科技改变未来☆ 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 下载地址:http://mirrors.aliyun.com/docker-toolbox/windows/docker-toolbox/ 安装完成之后点击Docker Quickstart Terminal运行 第一次安装可能会因为没FQ导致下载镜像失败 No default Boot2Docke 阅读全文
posted @ 2020-05-28 23:20 科技改变未来☆ 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 效果图: 代码: input{ display: inline-block; vertical-align: middle; } label{ vertical-align: middle; } 阅读全文
posted @ 2020-05-27 14:43 科技改变未来☆ 阅读(1252) 评论(0) 推荐(0) 编辑
摘要: 注意:组件名要小写 阅读全文
posted @ 2020-05-26 20:50 科技改变未来☆ 阅读(666) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-05-22 14:11 科技改变未来☆ 阅读(335) 评论(0) 推荐(0) 编辑
摘要: <input type="radio" name="love" v-model="v3" value="aa"> <input type="radio" name="love" v-model="v3" value="bb"> 当v3的值和value的值一样就会被选中 name相同的时候当成一个组, 阅读全文
posted @ 2020-05-22 11:03 科技改变未来☆ 阅读(556) 评论(0) 推荐(0) 编辑
摘要: 第一步: 第二步: 然后修改成最新的密码即可 阅读全文
posted @ 2020-05-19 17:25 科技改变未来☆ 阅读(215) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页