文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

在HTML页面中如何使用React

2023-06-29 00:46

关注

这篇文章主要介绍了在HTML页面中如何使用React的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇在HTML页面中如何使用React文章都会有所收获,下面我们一起来看看吧。

该方案使用场景:在html页面中使用react,主js文件index.js和其它非react功能使用js模块化的方式开发,适合轻量级中小型应用

index.html代码:

引入reactreact-dombabelmomentantd

<!DOCTYPE html><html lang='zh-CN'><head>    <title>React in HTML</title>    <meta charset="utf-8" />    <meta http-equiv="X-UA-Compatible" content="IE=edge">    <meta name="viewport" content="width=device-width, initial-scale=1">    <link rel="stylesheet" href="libs/antd/antd.min.css">    <link rel="stylesheet" href="css/index.css">    <style type="text/css">    </style>    <script type="text/javascript" src="libs/jquery-1.9.1.js"></script>    <script type="text/javascript" src="libs/react/react.production.min.js"></script>    <script type="text/javascript" src="libs/react/react-dom.production.min.js"></script>    <script type="text/javascript" src="libs/babel/babel.min.js"></script>    <script type="text/javascript" src="libs/moment/moment-with-locales.min.js"></script>    <script type="text/javascript" src="libs/antd/antd-with-locales.min.js"></script></head><body>    <input id='btn' type="button" class="index-btn" value="显示React组件" />    <script type="text/babel" src="components/HelloReact.jsx"></script>    <script type="module" src="index.js"></script></body></html>

index.js代码:

import { ReactComponentContainer } from './ReactComponentContainer.js'let isShow = true;let helloReactContainer;$('#btn').on('click', function () {    if (isShow) {        helloReactContainer = new ReactComponentContainer('helloReact', HelloReact, { name: 'React' });        helloReactContainer.show();        isShow = false;        $(this).val('隐藏React组件');    } else {        helloReactContainer.hide();        isShow = true;        $(this).val('显示React组件');    }});

ReactComponentContainer.js代码:

该模块用于在html中显示隐藏react组件

class ReactComponentContainer {    component    componentProps    componentContainerId    constructor(componentContainerId, component, componentProps) {        if ($('#' + componentContainerId).length == 0) {            $('body').append('<div id="' + componentContainerId + '"></div>');        }        this.componentContainerId = componentContainerId;        this.component = component;        this.componentProps = componentProps;    }    render(isShow) {        ReactDOM.render(            React.createElement(                antd.ConfigProvider,                {                    locale: antd.locales.zh_CN                },                React.createElement(this.component, Object.assign({ isShow: isShow }, this.componentProps))            ),            document.getElementById(this.componentContainerId)        );    }    show() {        this.render(true);    }    hide() {        this.render(false);    }}export { ReactComponentContainer }

HelloReact.jsx代码:

class HelloReact extends React.Component {    dateFormat = 'YYYY-MM-DD'    timeFormat = 'HH:mm:ss'    constructor(props) {        super(props);        let now = new Date().valueOf();        this.state = {            dateStr: moment(now).format(this.dateFormat),            timeStr: moment(now).format(this.timeFormat)        }        this.onChangeDate = this.onChangeDate.bind(this);        this.onChangeTime = this.onChangeTime.bind(this);        this.updateDatePickerAndTimePicker = this.updateDatePickerAndTimePicker.bind(this);    }    onChangeDate(date, dateString) {        this.setState({ dateStr: dateString });    }    onChangeTime(time, timeString) {        this.setState({ timeStr: timeString });    }    updateDatePickerAndTimePicker() {        let now = new Date().valueOf();        this.setState({            dateStr: moment(now).format(this.dateFormat),            timeStr: moment(now).format(this.timeFormat)        });    }    render() {        return <div style={{ display: this.props.isShow ? '' : 'none' }}>            <h2>Hello {this.props.name}, Now is {this.state.dateStr} {this.state.timeStr}</h2>            <antd.DatePicker onChange={this.onChangeDate} value={moment(this.state.dateStr, this.dateFormat)} />                         <antd.TimePicker onChange={this.onChangeTime} value={moment(this.state.timeStr, this.timeFormat)} />            <br />            <antd.Button type="primary" size="default" style={{ marginTop: '10px' }} onClick={this.updateDatePickerAndTimePicker} >更新日期时间控件值</antd.Button>        </div>;    }}

效果图:

在HTML页面中如何使用React

浏览器按F12弹出DevTools,在Sources选项卡中可以看到组件代码,方便打断点调试

在HTML页面中如何使用React

遇到的问题:

无法使用es6的import语法导入react组件,es6的import和require.js都不认识jsx

react组件不是按需加载,只适合小型应用

关于“在HTML页面中如何使用React”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“在HTML页面中如何使用React”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯