摘要: <router-view> 组件是一个 functional 组件,渲染路径匹配到的视图组件。<router-view> 渲染的组件还可以内嵌自己的 <router-view>,根据嵌套路径,渲染嵌套组件。 如果中最外层的<router-view>中增加了:key="$route.fullPath" 阅读全文
posted @ 2023-07-02 13:06 微风L 阅读(859) 评论(0) 推荐(0) 编辑
摘要: 背景:使用vue进行对象赋值,如果是一个未在data声明的属性,会导致双向绑定无法正常回显。 <template> <div> <div> <label for="">姓名</label> <input v-model="info.name" type="text"> </div> <div> <l 阅读全文
posted @ 2023-07-02 12:01 微风L 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 后端同事提供的接口是get请求,需要通过body传值,在postman里面是可以正常请求的,但是使用axios的时候却参数总是不正确。 后来查了相关文档,get请求是没有请求主体的,axios封装的get请求也不会把主体(body)传给后端,如果需要传递主体的话,就得post请求或者其他。 改成po 阅读全文
posted @ 2021-05-07 13:44 微风L 阅读(861) 评论(0) 推荐(0) 编辑
摘要: 一、安装git 安装成功后,找到git bash路径(需要找到自己电脑中git的安装路径) 例如:我的默认路径是 D:\software\Git\bin\bash.exe 二、打开vscode[版本1.50.1]中设置文件 快捷键 Ctrl+Shift+p 输入 settings.json 打开设置 阅读全文
posted @ 2020-10-15 15:03 微风L 阅读(1158) 评论(0) 推荐(1) 编辑
摘要: 使用watch过程中使用this发生的报错,后查Vue文档发现,文档中有标红注释。自己做个记录。 参考地址: https://cn.vuejs.org/v2/api/#watch 阅读全文
posted @ 2020-09-15 13:24 微风L 阅读(1977) 评论(0) 推荐(0) 编辑
摘要: vue-awesome-swiper已经安装了,但是依然又报错。 Failed to compile. ./node_modules/vue-awesome-swiper/dist/vue-awesome-swiper.js Module not found: Error: Can’t resolv 阅读全文
posted @ 2020-05-21 09:48 微风L 阅读(2808) 评论(0) 推荐(0) 编辑
摘要: target 要使用 Proxy 包装的目标secure 安全证书校验 Referer 表示请求的来源(必填) proxy: { "/api": { target: 'https://example.com', changeOrigin: true, secure: false, headers: 阅读全文
posted @ 2020-05-19 14:13 微风L 阅读(10956) 评论(0) 推荐(0) 编辑
摘要: 修改app/Exceptions/Handler.php文件内容 use Illuminate\Validation\ValidationException; 修改render函数 public function render($request, Throwable $exception) { if 阅读全文
posted @ 2020-05-17 14:35 微风L 阅读(2441) 评论(0) 推荐(0) 编辑
摘要: 使用环境: window wamp自带php7.3.1 leveral composer 错误原因: 原来的php中并没有安装mongodb扩展,或者mongodb扩展的版本不对,版本要求是要大于^1.5.0。 使用php -m 可以查看已安装扩展列表,检查一下是否有mongodb扩展文件。 解决步 阅读全文
posted @ 2020-02-10 21:32 微风L 阅读(1285) 评论(0) 推荐(0) 编辑