BillBie

导航

上一页 1 2 3 4 5 6 7 8 ··· 11 下一页

2022年5月9日 #

vuex 中异步请求和同步请求更改store

摘要: 同步请求使用:mutations mutations: { increment(state){ state.counter++ }, incrementcounter(state,count){ state.counter+=count }, addper(state,student){ state 阅读全文

posted @ 2022-05-09 21:57 BillBie 阅读(796) 评论(0) 推荐(0) 编辑

2022年5月8日 #

vue3 slot具名插槽需要使用v-slot

摘要: 在vue 2.x中 <template> <div class="tab-bar-item" @click="btnclick"> <div><slot name="item1"></slot></div> <div><slot name="item2"></slot></div> </div></ 阅读全文

posted @ 2022-05-08 15:00 BillBie 阅读(288) 评论(0) 推荐(0) 编辑

2022年5月5日 #

vue-router4 中router-link,tag(v3)相关应用

摘要: 在vue-router 3.x中,router-link标签中会被渲染为a标签,实际应用中,有可能需要将a标签改为其它标签 可以使用tag="button"这种方式, 但是在vue-router 4.x中,移除了tag,为了实现这样的效果, <router-link to="/home" custo 阅读全文

posted @ 2022-05-05 15:32 BillBie 阅读(301) 评论(0) 推荐(0) 编辑

2022年5月4日 #

webpack编译vue时vue-loader 和 vue-template-compiler 问题

摘要: 在使用webpack编译vue 时,需要在npm 安装 vue-template-compiler和vue-loader,此时出现过这样的问题 之前未注意安装顺序,都安装成功了,但是编译时,提示保存 TypeError: compiler.parseComponent is not a functi 阅读全文

posted @ 2022-05-04 12:37 BillBie 阅读(1049) 评论(0) 推荐(0) 编辑

2022年4月11日 #

python unicode转换

摘要: 当遇到 类似 \u767b\u5f55\u6210\u529f,且类型为 string 可先编码再解码,解码时格式使用:unicode_escape 阅读全文

posted @ 2022-04-11 14:52 BillBie 阅读(19) 评论(0) 推荐(0) 编辑

2021年8月20日 #

CSS 属性 选择器中 ~ 与 | 的区别

摘要: 从2个描述中,可以看出~ 和 | 的的作用是一样的,但是有什么区别呢? 其中: | 是表示为 所属性的值的单词中 包含 表达式中的值,如 en-us ~ 是表示为 所属性的值的单词中 有 表达式中的值,如 hello world 阅读全文

posted @ 2021-08-20 09:57 BillBie 阅读(440) 评论(0) 推荐(0) 编辑

2021年4月9日 #

selenium 获取 浏览器localStorage

摘要: 转载自:https://stackoverflow.com/questions/46361494/how-to-get-the-localstorage-with-python-and-selenium-webdriver 可以使用execute_script class LocalStorage: 阅读全文

posted @ 2021-04-09 11:47 BillBie 阅读(138) 评论(0) 推荐(0) 编辑

2021年3月4日 #

Microsoft Visual C++ 14.0 is required

摘要: python在安装twisted中时,会出现Microsoft Visual C++ 14.0 is required 的保存信息 解决办法: 将twisted安装包下载下来手动安装 ①.进入网站https://www.lfd.uci.edu/~gohlke/pythonlibs/ 搜索 twist 阅读全文

posted @ 2021-03-04 17:05 BillBie 阅读(15) 评论(0) 推荐(0) 编辑

2020年12月17日 #

jenkins配置中执行 ant 命令时,提示找不到ant 命令

摘要: 1.在服务器上手动执行ant ,则可以正常执行,但是使用jenkins 构建时却提示无法识别ant命令 查询了相关原因为:jenkins默认情况下执行shell脚本是使用非登录方式,然而非登录方式不会加载 /etc/profile 文件,且ant_home 此配置在该文件中,所以无法识别 需要在 E 阅读全文

posted @ 2020-12-17 10:17 BillBie 阅读(57) 评论(0) 推荐(0) 编辑

2020年10月19日 #

scrapy自定义重试

摘要: 1.通过响应的 状态码或者异常来进行重试 class MyselfSpiderMiddleware(RetryMiddleware): def process_response(self, request, response, spider): if request.meta.get('dont_r 阅读全文

posted @ 2020-10-19 14:48 BillBie 阅读(66) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 11 下一页