码迷,mamicode.com
首页 > 其他好文 > 详细

react 简单的用函数调出ui显示

时间:2018-10-30 23:59:05      阅读:291      评论:0      收藏:0      [点我收藏+]

标签:dialog   run   onclick   open   tee   dom   dia   ops   alert   

import test from '../components/test'

const info = () => {
  test.info('This is a normal message');
};

render(){
retrun  <button onClick={info}>click me</button>
}

test.js

import React, { Component } from "react";
import ReactDOM from "react-dom";
import { Dialog, DialogTitle } from "@material-ui/core";

const Alert = (props) => (
  <Dialog open={true} fullWidth>
    <DialogTitle>{props.msg}</DialogTitle>
  </Dialog>
);

class Test extends Component {
  static info(msg) {
    const div = document.createElement("div");
    document.body.append(div);
    ReactDOM.render(<Alert msg={msg}/>, div);
  }
}
export default Test;

react 简单的用函数调出ui显示

标签:dialog   run   onclick   open   tee   dom   dia   ops   alert   

原文地址:https://www.cnblogs.com/ajanuw/p/9880233.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!