笔记
tieniuya
这个作者很懒,什么都没留下…
展开
-
uniapp-Cli创建的项目导入微信开发者工具,后台接口报错,线上版本不报错。
uniapp 微信小程序原创 2023-01-10 15:59:23 · 303 阅读 · 0 评论 -
DevTools 无法加载来源映射:无法加载 chrome-extension://xxx.map 的内容:系统错误: net::ERR_FILE_NOT_FOUND
DevTools 无法加载来源映射:无法加载 chrome-extension://xxx.map 的内容:系统错误: net::ERR_FILE_NOT_FOUND原创 2022-11-30 18:34:39 · 705 阅读 · 0 评论 -
uniapp实现手风琴动画(微信小程序可用)
改一下vue和原生微信小程序就能用,通用的。原创 2022-07-13 17:59:56 · 1961 阅读 · 2 评论 -
uniapp中使用vant weapp 组件库的 van-checkbok组件不能默认选中
<van-checkbox-group :value="discountSelects" @change="onChange"> <van-cell class="van-cell" v-for="payment in order.payments" :key="payment.id" :data-id="paymen.原创 2022-05-18 17:22:23 · 1938 阅读 · 0 评论 -
修改作用域插槽中的值,解决数据改变视图不改变问题。
父组件 dad.vue<template> <son ref="son"> <template #list="list"> <button type="button" v-for="item in list" :key="item.id" @click="handleClick(item)"></button> </template> </son></template>&原创 2022-05-09 17:48:17 · 792 阅读 · 1 评论 -
(windows) node-sass 安装报错
node-sass 安装报错 Command failederror D:\xxx\xxx\node_modules\node-sass: Command failed.这是 node 版本和 node-sass 版本不对应导致的,查看 node-sass 对应 node 版本,可以安装 nvm 切换 node 版本。参考:node-sass安装失败 error D:\xxx\xxx\node_modules\node-sass: Command failed.(window + mac M1 p原创 2022-05-06 16:48:50 · 493 阅读 · 0 评论 -
vue-element-admin安装依赖踩坑大全
ssh://git@github.com.cnpmjs.org/nhn/raphael.git 文件安装时提示找不到仓库、证书验证错误。解决方法:需要执行以下3个步骤执行 git config --local url."https://".insteadOf ssh://git@ ,把 ssh 替换为 https(网上的教程都写得 --global 但是我这里修改不了全局,文件夹权限也够,重启也试了,但是就是修改不了,索性只改当前项目的)我这是新换的电脑,没有设置过github用的 ssh,又跟.原创 2022-01-29 19:15:14 · 1227 阅读 · 0 评论 -
解决jquery选择器 特殊符号无法选中元素问题
<div id="unit(1).li" class="unit(1){[.]}li"></div>function escapeJquery (srcStr, type) { /* * srcStr: 需转换的字符串 * type: 0:属性选择器,1:类和id选择器 * */ var jsSpecialChars = [['\\', '^', '$', '*', '?', '#', '.', '+', '(', ')', '[', ']', '|'原创 2021-11-11 18:12:49 · 832 阅读 · 0 评论 -
解决nodemon信息太多问题
启动命令nodemon --quiet xxx.jsvscode 中配置nodemon调试launch.json{ // 使用 IntelliSense 以得知可用的屬性。 // 暫留以檢視現有屬性的描述。 // 如需詳細資訊,請瀏覽: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "type": "node", "原创 2021-08-11 10:56:36 · 176 阅读 · 0 评论 -
Nginx反向代理Vue项目(代理项目地址和解决跨域)
正向代理正向代理需要客户端特殊设置,才能访问到某个网站,例如google。反向代理反向代理是通过服务端设置,代理服务器用的,用户无感知。开发vue项目时通过nginx反向代理访问文件地址和接口。vue 服务端口 9527/api/ 请求地址(跨域)http://test.com:8882/4399 nginx服务端口号(启动服务之后通过它来访问项目)通过 http://localhost:4399 访问项目vue项目中请求地址若为 /getUserInfo 写为 /api/get.原创 2021-06-10 17:12:43 · 1571 阅读 · 0 评论