摘要: npm install @easydarwin/easyplayer --save 把 node_modules/@easydarwin/easyplayer/dist/element目录下的文件 复制到public内 index.html <script type="text/javascript 阅读全文
posted @ 2024-08-09 09:33 风花一世月 阅读(373) 评论(0) 推荐(0) 编辑
摘要: 请求报错:Refused to connect to 'http://127.0.0.1:8000/get?name=kv-grpc' because it violates the following Content Security Policy directive: "default-src 阅读全文
posted @ 2024-07-09 15:20 风花一世月 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 一般是配置问题 查询路由是否添加*条件 { path: '/:pathMatch(.*)', redirect: '/' }, 阅读全文
posted @ 2024-07-04 15:35 风花一世月 阅读(85) 评论(0) 推荐(0) 编辑
摘要: app.whenReady().then(() => { const { spawn } = require('child_process') const fs = require('fs') const path = require('path') const logStream = fs.cre 阅读全文
posted @ 2024-07-03 13:44 风花一世月 阅读(14) 评论(0) 推荐(0) 编辑
摘要: border: 15rpx solid rgba(255, 255, 255, 0.5); background: #fff; background-clip: padding-box; 阅读全文
posted @ 2024-07-01 16:42 风花一世月 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 问题描述: uQRCode 组件在微信小程序中有概率出现空白 原因: uni.createSelectorQuery()获取node为null 解决办法: 应该是没有获取到canvas元素,元素未渲染完成 通过unipp文档看到需要在mounted后调用,并且因为是在组件中需要使用selectorQ 阅读全文
posted @ 2024-05-14 11:11 风花一世月 阅读(152) 评论(0) 推荐(0) 编辑
摘要: Cron.js import React, { Fragment, useState, useCallback, useRef, useEffect } from 'react'; import { Select, TimePicker, Input } from 'antd'; const Opt 阅读全文
posted @ 2024-05-09 17:41 风花一世月 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 原因:如果编码的对象中的参数有“%”,那么解码就会报错 解决:编码之前把“%”换成“%25” 示例: let dataList = encodeURIComponent(JSON.stringify(this.dataList).replace(/%/g, '%25')) 解码记得改回来 let d 阅读全文
posted @ 2024-04-11 15:25 风花一世月 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 我的博客即将同步至腾讯云开发者社区,邀请大家一同入驻:https://cloud.tencent.com/developer/support-plan?invite_code=1rws1yqbcrnoh 阅读全文
posted @ 2024-03-19 10:10 风花一世月 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 原因好像是服务端渲染没有没有XMLHttpRequest 对象, 解决办法: _app.tsx中直接引入,不用import <Script src="https://unpkg.com/vconsole@latest/dist/vconsole.min.js" onLoad={() => { new 阅读全文
posted @ 2024-02-02 15:37 风花一世月 阅读(82) 评论(0) 推荐(0) 编辑