摘要: React常见错误 ①Uncaught SyntaxError: Inline Babel script: Adjacent JSX elements must be wrapped in an enclosing tag 虚拟DOM中只能有一个根标签 ②Warning: Invalid DOM p 阅读全文
posted @ 2020-06-29 22:34 JackieDYH 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 可以在react项目中执行以下命令安装bootstrap npm install bootstrap@3 --save 在使用的时候,直接在index.js文件导入即可 import 'bootstrap/dist/css/bootstrap.min.css'; import 'bootstrap/ 阅读全文
posted @ 2020-06-29 21:41 JackieDYH 阅读(5) 评论(0) 推荐(0) 编辑
摘要: import React, { Component } from 'react'; import './App.css'; export default class Home extends Component { state = { isidx: -1, empty: true, user: { 阅读全文
posted @ 2020-06-29 21:37 JackieDYH 阅读(5) 评论(0) 推荐(0) 编辑