
React
文章平均质量分 61
qq_33453540
这个作者很懒,什么都没留下…
展开
-
React使用antd组件 iframe 打印 及 单选框无选中 和 样式问题
// 1. 创建iframe let iframe = document.createElement("IFRAME"); iframe.setAttribute("style","position:absolute;width:0;height:0;left:0;top:0;"); // 2. 获取要打印的内容 const el = document.querySelector(`#printContent}`); // 3. 获取内容的输入框和样式 let head = document.原创 2021-03-30 10:27:33 · 1161 阅读 · 0 评论 -
react 配置eslint 以及解决 ‘xxx‘ is missing in props validation和 组件变量 is assigned a value but never used
安装: npm install eslint --save-dev eslint-plugin-react babel-eslint 三个模块。 然后使用 ./node_modules/.bin/eslint --init 或者 eslint --init 创建.eslintrc.js 文件 生成后js文件代码如下: // eslint-disable-next-line no-undef module.exports = { "env": { "browser": true,原创 2020-11-16 16:35:54 · 16359 阅读 · 0 评论