基本要点

  1. 怎么在react实现跨域
  2. 定义全局变量
    1. React.Component.prototype.$属性名= XXX;
    2. 示例:
      1. import axios from 'axios';
      2. React.Component.prototype.$axios = axios;

      生命周期

      实践亮点

  • react的预设代码应该是这三个标签:
    1. body, html, #root{
    2. height: 100%;
    3. margin: 0px;
    4. padding: 0px;
    5. }
    image.png