首页 |  我的博客 |  查看该博主内容分类 | 
上一页 1 ··· 7 8 9 10 11 12 13 下一页
摘要: 报错 在vue中想给computed属性赋值的时候发生的报错 原因 computed计算属性不能使用箭头函数设置getter或setter 解决办法 computed: { propertyName: { get: () => { ... } set: (val) => { ... } } } // 阅读全文
posted @ 2022-12-20 11:22 Z哎呀 阅读(885) 评论(0) 推荐(0) 编辑
摘要: ## 原因 openAi(微软投资的企业)的地区限制,只要有一次非允许地区的访问记录,就会在缓存中留下地区信息,后续将直接读取缓存,不再验证地区来源,拒绝访问。因此,只需要将缓存清除,更换好魔法后再次登入进行验证即可。 ## 解决办法 - 第一步,复制下面代码到浏览器地址栏 `avascript:w 阅读全文
posted @ 2022-12-17 21:13 Z哎呀 阅读(171533) 评论(26) 推荐(5) 编辑
摘要: 原因分析 如果同时使用了@blur事件,一般是由于触发@keyup.enter的同时也触发了@blur 解决办法 使@keyup.enter指向@blur,即: @keyup.enter.native="$event.target.blur()" 阅读全文
posted @ 2022-12-12 09:56 Z哎呀 阅读(608) 评论(0) 推荐(0) 编辑
摘要: 报错 本例在computed中进行修改data里的数据时发生的错误 You may have an infinite update loop in a component render function. 原因 data中的数据一直处于监听状态,因此不能在类似computed中频繁修改数据的地方直接 阅读全文
posted @ 2022-12-09 15:51 Z哎呀 阅读(1727) 评论(0) 推荐(0) 编辑
摘要: 网上答案 大部分答案是: z-index标签没有使用position进行定位(除static); 父级任意标签不是position: absolute定位; z-index标签使用了浮动,应去除并使用position定位; 父级标签的z-index设置的过低,导致子标签z-index没有“出头之日” 阅读全文
posted @ 2022-11-21 00:36 Z哎呀 阅读(367) 评论(0) 推荐(0) 编辑
摘要: 报错 原因 SQLite版本太低 解决办法 尝试过升级SQLite,修改check_sqlite_version()函数里的版本(不过我是没找到这个)都没什么用,所以最终推荐使用pysqlite3代替SQLite 安装 pip3 install pysqlite3 pip3 install pysq 阅读全文
posted @ 2022-10-26 14:55 Z哎呀 阅读(1110) 评论(0) 推荐(0) 编辑
摘要: 原因 linxu的换行符为\n,而windows环境下的为\n\r 解决办法 方法一,修改换行符 sed -i 's|\r||' xxx.sh 方法二,修改文件格式(推荐) vi xxx.sh : set fileformat=unix # 查看修改结果 : set ff # 保存退出 :x 阅读全文
posted @ 2022-10-24 14:42 Z哎呀 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 报错 原因 real_ip_recursive on;的开启需要安装nginx模块http_realip_module 解决办法 重新配置安装nginx ./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-http_ 阅读全文
posted @ 2022-10-24 14:04 Z哎呀 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 注:该文仅对echostr进行解密,可满足配置设置服务器url的需要,其余等后续需要会补充,或留言后我找时间再提炼简化其他解密算法 起因 企微提供的算法要么调整了没有同步修改提供的代码示例,要么就是过于解耦可读性较差。本文针对最需要的部分提出了最精简的代码。 精简代码 解决echostr解密返回明文 阅读全文
posted @ 2022-10-12 17:01 Z哎呀 阅读(516) 评论(0) 推荐(0) 编辑
摘要: 报错 AttributeError: module 'urllib' has no attribute 'parse' 原因 urllib模块比较特殊,不能import urllib后使用他下面的子模块 解决办法 import urllib 改为 import urllib.parse或from u 阅读全文
posted @ 2022-10-12 14:20 Z哎呀 阅读(611) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 下一页
// let homeEle = document.querySelector('body') // homeEle.setAttribute('id', 'particles-js') // /* ---- particles.js config ---- */ // particlesJS("particles-js", { // "particles": { // "number": { // "value": 380, // "density": { // "enable": true, // "value_area": 800 // } // }, // "color": { // "value": "#ffffff" // }, // "shape": { // "type": "circle", // "stroke": { // "width": 0, // "color": "#000000" // }, // "polygon": { // "nb_sides": 5 // }, // "image": { // "src": "img/github.svg", // "width": 100, // "height": 100 // } // }, // "opacity": { // "value": 0.5, // "random": false, // "anim": { // "enable": false, // "speed": 1, // "opacity_min": 0.1, // "sync": false // } // }, // "size": { // "value": 3, // "random": true, // "anim": { // "enable": false, // "speed": 40, // "size_min": 0.1, // "sync": false // } // }, // "line_linked": { // "enable": true, // "distance": 150, // "color": "#ffffff", // "opacity": 0.4, // "width": 1 // }, // "move": { // "enable": true, // "speed": 6, // "direction": "none", // "random": false, // "straight": false, // "out_mode": "out", // "bounce": false, // "attract": { // "enable": false, // "rotateX": 600, // "rotateY": 1200 // } // } // }, // "interactivity": { // "detect_on": "canvas", // "events": { // "onhover": { // "enable": true, // "mode": "grab" // }, // "onclick": { // "enable": true, // "mode": "push" // }, // "resize": true // }, // "modes": { // "grab": { // "distance": 140, // "line_linked": { // "opacity": 1 // } // }, // "bubble": { // "distance": 400, // "size": 40, // "duration": 2, // "opacity": 8, // "speed": 3 // }, // "repulse": { // "distance": 200, // "duration": 0.4 // }, // "push": { // "particles_nb": 4 // }, // "remove": { // "particles_nb": 2 // } // } // }, // "retina_detect": true // }); // var count_particles, stats, update; // stats = new Stats; // stats.setMode(0); // stats.domElement.style.position = 'absolute'; // stats.domElement.style.left = '0px'; // stats.domElement.style.top = '0px'; // document.body.appendChild(stats.domElement); // count_particles = document.querySelector('.js-count-particles'); // update = function() { // stats.begin(); // stats.end(); // if (window.pJSDom[0].pJS.particles && window.pJSDom[0].pJS.particles.array) { // count_particles.innerText = window.pJSDom[0].pJS.particles.array.length; // } // requestAnimationFrame(update); // }; // requestAnimationFrame(update);