React.js
CharmingDang
生命是一场幻觉
展开
-
npm打包项目 修改css/js等文件输出路径
import path from 'path';function getModulePackageName(module) { if (!module.context) return null; const nodeModulesPath = path.join(__dirname, '../node_modules/'); if (module.context.substring(0, nodeModulesPath.length) !== nodeModulesPath) { .原创 2021-12-01 11:21:14 · 1017 阅读 · 0 评论 -
微信公众号网页开发静默授权获取code和openid
官方api:https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_webpage_authorization.html#1需求:静默授权实现:第一步:用户同意授权,获取code注意:要在前端获取到code,传给后端 useEffect(() => { getCode() }, []) const getCode = () => { //第一步:用户同意授权,获取co原创 2021-01-20 14:30:48 · 1945 阅读 · 1 评论 -
Windows Server 2016 Datacenter中安装URL Rewrite 2.0 URL模块报错
版本不对 下载2.1版本下载地址:https://www.iis.net/downloads/microsoft/url-rewrite原创 2021-01-05 16:36:38 · 556 阅读 · 0 评论 -
react使用qrcode.react生成二维码
安装npm install qrcode.react --save使用import QRCode from 'qrcode.react'; <QRCode id="bill_qr_code_url" value={url} //value参数为生成二维码的链接 我这里是由后端返回 size={200} //二维码的宽高尺寸 fgColor="#000000" //二维码的颜色 />效果...原创 2020-12-18 09:46:53 · 5678 阅读 · 3 评论 -
基于react-weui构建react开发脚手架-教程
https://www.jianshu.com/p/455d3e95c6ef转载 2020-12-15 17:13:05 · 309 阅读 · 0 评论 -
Refusing to install package with name “react-weui“ under a package
检查package.json下的name是否和和要安装的包名相同相同就改掉name的名称原创 2020-12-15 15:23:34 · 207 阅读 · 0 评论 -
Error occured while trying to proxy to: localhost:8000/api/xxx
Antd Pro无法使用https访问外部接口,校验证书,需要换成http协议。原创 2020-12-15 11:24:15 · 5021 阅读 · 2 评论 -
react使用gg-editor自定义流程图节点
效果:使用:具体实现:1.节点添加tooltip2.自定义节点具体参考官方文档:https://www.yuque.com/antv/g6/ffzwfp原创 2020-10-20 10:22:21 · 1325 阅读 · 0 评论 -
react使用gg-editor自定义脑图节点
import React, { Fragment } from 'react';import { RegisterNode } from 'gg-editor';class EditorCustomNode extends React.Component { render() { const config = { draw(item) { const group = item.getGraphicGroup(); .原创 2020-10-20 10:06:35 · 1016 阅读 · 0 评论 -
URI malformed
问题:通过<Link>进行路由跳转 报错URI malformed原因:由于decodeURI转码时,通过%进行解析,如果字符串中存在%,则会出现URI malformed解决:原创 2020-08-24 16:59:47 · 17554 阅读 · 1 评论