百度360必应搜狗淘宝本站头条
当前位置:网站首页 > 技术文章 > 正文

React v19 稳定版发布!全新功能详解

zhezhongyun 2025-03-24 22:35 30 浏览

React 团队于 2024 年 12 月 5 日正式发布了 React v19 稳定版,并在 npm 上可用。此次更新带来了许多令人期待的新特性和改进,开发者们可以通过 React 19 升级指南获取详细的升级步骤和注意事项。本文将对 React 19 的新功能进行概述,并介绍如何在项目中应用这些特性。

React v19 新特性

Actions 和异步过渡

在 React 应用中,数据更新和状态变更是常见的场景。React 19 引入了 Actions 概念,通过支持异步函数,简化了处理待定状态、错误、乐观更新以及表单的逻辑。例如,新的 useActionState 钩子和

Actions 的结合,使得表单处理更加简洁高效。

function ChangeName({ name, setName }) {
  const [error, submitAction, isPending] = useActionState(
    async (previousState, formData) => {
      const error = await updateName(formData.get("name"));
      if (error) {
        return error;
      }
      redirect("/path");
      return null;
    },
    null,
  );

  return (
    
      
      
      {error && 

{error}

} ); }

新钩子与 API

  • useActionState: 简化了 Actions 的常见应用场景。
  • useOptimistic: 提供乐观更新功能,允许在异步请求进行时即刻更新 UI。
  • use: 支持在渲染时读取资源和上下文,使得在条件中使用 Context 成为可能。

React DOM 静态 API

React 19 引入了 prerenderprerenderToNodeStream 两个新的 API,用于改进静态 HTML 生成,支持流环境如 Node.js Streams 和 Web Streams。

服务器组件与服务器操作

React 服务器组件允许在构建时或每次请求时预先渲染组件,为开发者提供了新的选择。同时,服务器操作允许客户端组件调用在服务器上执行的异步函数,提升了客户端与服务器的协作能力。

改进与兼容性

  • Ref 作为属性:函数组件现在可以直接通过属性访问 ref,不再需要 forwardRef
  • 文档元数据支持:React 19 原生支持在组件中渲染 </span></span><span style='color: #333333; --tt-darkmode-color: #A3A3A3;'>、</span><span style='color: #333333; --tt-darkmode-color: #333333;'><span style='background-color: #F3F4F4; --tt-darkmode-bgcolor: #BDBEBE;'><meta></span></span><span style='color: #333333; --tt-darkmode-color: #A3A3A3;'> 和 </span><span style='color: #333333; --tt-darkmode-color: #333333;'><span style='background-color: #F3F4F4; --tt-darkmode-bgcolor: #BDBEBE;'><link></span></span><span style='color: #333333; --tt-darkmode-color: #A3A3A3;'> 标签,自动提升至文档的 </span><span style='color: #333333; --tt-darkmode-color: #333333;'><span style='background-color: #F3F4F4; --tt-darkmode-bgcolor: #BDBEBE;'><head></span></span><span style='color: #333333; --tt-darkmode-color: #A3A3A3;'>。</span></li><li style='text-align: left;' data-track='17'><span style='color: #333333; --tt-darkmode-color: #A3A3A3;'>样式表支持:通过声明优先级管理样式表的插入顺序,确保样式在依赖内容显示前加载完成。</span></li><li style='text-align: left;' data-track='18'><span style='color: #333333; --tt-darkmode-color: #A3A3A3;'>异步脚本支持:支持在组件树中任意位置渲染异步脚本,确保不会重复加载。</span></li></ul><h1 class='pgc-h-arrow-right' data-track='19'>升级指南</h1><p style='text-align: left;' data-track='20'><span style='color: #333333; --tt-darkmode-color: #A3A3A3;'>开发者可以参考 React 19 升级指南,获取详细的升级步骤和破坏性变更列表,以确保项目顺利过渡到最新版本。</span></p><p style='text-align: left;' data-track='21'><span style='color: #333333; --tt-darkmode-color: #A3A3A3;'>React v19 的发布为开发者带来了更强大的功能和更高效的开发体验,鼓励大家尽快尝试这些新特性,提升应用的响应速度和用户体验。详细信息请参见官方文档及相关技术文章。</span></p></div> <div class="clearfix mb10"> <div class="share fr"> <div class="social-share mb20 ta-c" data-initialized="true"> <a href="#" class="social-share-icon iconfont icon-weibo"></a> <a href="#" class="social-share-icon iconfont icon-qq"></a> <a href="#" class="social-share-icon iconfont icon-wechat"></a> <a href="#" class="social-share-icon iconfont icon-qzone"></a> </div> <script src="http://www.zhezhongyun.com/zb_users/theme/tx_hao/script/social-share.min.js"></script> </div> <div class="info-tag"> <a href="http://www.zhezhongyun.com/tags-171.html" title="查看更多标签内容" rel="tag" target="_blank">标签</a> </div> </div> <div class="info-next"> <ul class="row"> <li class="col-12 col-m-24 mb10">上一篇:<a href="http://www.zhezhongyun.com/post/2969.html" title="9个小细节帮你优化CSS代码(解决css js性能优化)">9个小细节帮你优化CSS代码(解决css js性能优化)</a></li> <li class="col-12 col-m-24 ta-r mb10">下一篇:<a href="http://www.zhezhongyun.com/post/2971.html" title="怎么避免网站中出现 index.html(怎么避免网站提示的危险)">怎么避免网站中出现 index.html(怎么避免网站提示的危险)</a></li> </ul> </div> </div> <h2 class="tx-title">相关推荐</h2> <div class="home-news"> <dl class="news-box clearfix pd20 "> <dt class="f-18 mb10"><a href="http://www.zhezhongyun.com/post/4472.html" title="css 垂直居中的几种实现方式(css怎么实现垂直居中)" class="f-black" target="_blank">css 垂直居中的几种实现方式(css怎么实现垂直居中)</a></dt> <dd class="news-txt"> <p class="f-gray f-13">前言设计是带有主观色彩的,同样网页设计中的css一样让人摸不头脑。网上列举的实现方式一大把,或许在这里你都看到过,但既然来到这里我希望这篇能让你看有所收获,毕竟这也是前端面试的基础。实现方式备注:...</p> </dd> </dl> <dl class="news-box clearfix pd20 "> <dt class="f-18 mb10"><a href="http://www.zhezhongyun.com/post/4471.html" title="CSS 中各种居中你真的玩明白了么(css中的居中属性)" class="f-black" target="_blank">CSS 中各种居中你真的玩明白了么(css中的居中属性)</a></dt> <dd class="news-txt"> <p class="f-gray f-13">页面布局中最常见的需求就是元素或者文字居中了,但是根据场景的不同,居中也有简单到复杂各种不同的实现方式,本篇就带大家一起了解下,各种场景下,该如何使用CSS实现居中前言页面布局中最常见的需求就是元...</p> </dd> </dl> <dl class="news-box clearfix pd20 "> <dt class="f-18 mb10"><a href="http://www.zhezhongyun.com/post/4470.html" title="浅谈3种css技巧——两端对齐(css两侧对齐)" class="f-black" target="_blank">浅谈3种css技巧——两端对齐(css两侧对齐)</a></dt> <dd class="news-txt"> <p class="f-gray f-13">在出里文字比较多的网页,文字对齐其中采用的两端对齐,两端对齐的方法有三种方法,如下:1.使用text-align:justifytext-align:justify属性是全兼容的,使用它实现两端对...</p> </dd> </dl> <dl class="news-box clearfix pd20 "> <dt class="f-18 mb10"><a href="http://www.zhezhongyun.com/post/4469.html" title="从零开发HarmonyOS(鸿蒙)运动手表小游戏—数字华容道" class="f-black" target="_blank">从零开发HarmonyOS(鸿蒙)运动手表小游戏—数字华容道</a></dt> <dd class="news-txt"> <p class="f-gray f-13">本个demo将从零基础开始完成鸿蒙小游戏APP在可穿戴设备上的编译,此处以运动手表为例,在项目中我们所使用到的软件为DevEcoStudio,下载地址为:DevEcoStudio下载、DevEco...</p> </dd> </dl> <dl class="news-box clearfix pd20 "> <dt class="f-18 mb10"><a href="http://www.zhezhongyun.com/post/4468.html" title="教师如何制作随机点名系统,活跃课堂气氛" class="f-black" target="_blank">教师如何制作随机点名系统,活跃课堂气氛</a></dt> <dd class="news-txt"> <p class="f-gray f-13">上课点名抽学生回答问题,做游戏……由老师口头点名,点谁回答总有点老师本人的情绪,且显得毫无趣味,但做一个点名系统,就不一样了,电脑随机抽出的名字,不仅公平,还会给孩子们带来一种不一样的感受。那么怎么做...</p> </dd> </dl> <dl class="news-box clearfix pd20 "> <dt class="f-18 mb10"><a href="http://www.zhezhongyun.com/post/4467.html" title="看京铁人如何破解电煤运输&quot;烤&quot;验" class="f-black" target="_blank">看京铁人如何破解电煤运输&quot;烤&quot;验</a></dt> <dd class="news-txt"> <p class="f-gray f-13">“天气太热了!空调是我的避暑必备神器再往冰箱里冻些雪糕和西瓜电风扇也要24小时上岗了”近日京津冀地区迎来高温天气小伙伴们都在分享解暑妙招但这些妙招背后都离不开一个字——“电”为确保电力平稳“迎峰度夏”...</p> </dd> </dl> <dl class="news-box clearfix pd20 "> <dt class="f-18 mb10"><a href="http://www.zhezhongyun.com/post/4466.html" title="回家的路就是最美的风景 幸福就在前方" class="f-black" target="_blank">回家的路就是最美的风景 幸福就在前方</a></dt> <dd class="news-txt"> <p class="f-gray f-13">2025年春运启动以来,无数在外游子踏上归乡旅程。为了帮助更多旅客按时回家过年,还有很多人不分昼夜、不辞辛苦地奔波在铁路线上。“我的列车飞驰而过,那是梦想的前方,回家的路就是最美的风景。”END&l...</p> </dd> </dl> <dl class="news-box clearfix pd20 "> <dt class="f-18 mb10"><a href="http://www.zhezhongyun.com/post/4465.html" title="如何做出一个香消玉殒的网页文字特效" class="f-black" target="_blank">如何做出一个香消玉殒的网页文字特效</a></dt> <dd class="news-txt"> <p class="f-gray f-13">最近,迷上了CSS3特效,空闲时间学一些小案例,非专业,爱好。不断学习也能掌握一些更为全面的html,css,JavaScript的知识,以小博大,从兴趣出发再掌握更多网页开发知识。闲言少叙,直接开怼...</p> </dd> </dl> <dl class="news-box clearfix pd20 "> <dt class="f-18 mb10"><a href="http://www.zhezhongyun.com/post/4464.html" title="第1000篇原创,我想对你说______(2021我想对你说1000)" class="f-black" target="_blank">第1000篇原创,我想对你说______(2021我想对你说1000)</a></dt> <dd class="news-txt"> <p class="f-gray f-13">亲爱的小伙伴今天您看到的这篇推送是“北京铁路”发布的第1000篇原创作品!这不仅是一个数字的跨越更是我们一路走来与每一位关注者共同铸就的辉煌里程碑每一篇文章都承载着我们的心血与热情每一次传播都离不开大...</p> </dd> </dl> <dl class="news-box clearfix pd20 "> <dt class="f-18 mb10"><a href="http://www.zhezhongyun.com/post/4463.html" title="动车组的“家”在哪里?(动车组的"家"在哪里?举例说明)" class="f-black" target="_blank">动车组的“家”在哪里?(动车组的"家"在哪里?举例说明)</a></dt> <dd class="news-txt"> <p class="f-gray f-13">夜幕降临随着动车组列车驶入站台乘客陆续离开动车组也完成了一天的工作准备启程回“家”有小伙伴儿会问“为什么大多数动车组列车夜间不运行呢?”这是因为白天行驶一天的动车组要利用晚上的时间进行全面检查、维修和...</p> </dd> </dl> <dl class="news-box clearfix pd20 "> <dt class="f-18 mb10"><a href="http://www.zhezhongyun.com/post/4462.html" title="这套铁路“高考”卷,请你来作答(郑州铁路职业技术学院高考河南录取分数线)" class="f-black" target="_blank">这套铁路“高考”卷,请你来作答(郑州铁路职业技术学院高考河南录取分数线)</a></dt> <dd class="news-txt"> <p class="f-gray f-13">今天是2025年全国高考的第一天小编为大家准备了一套北京铁路版的试卷满分120分共12道单选题快来试试你能得多少分吧!·<animateattributeName="opacity"begi...</p> </dd> </dl> <dl class="news-box clearfix pd20 "> <dt class="f-18 mb10"><a href="http://www.zhezhongyun.com/post/4461.html" title="HarmonyOS Text组件Span间距解决方案" class="f-black" target="_blank">HarmonyOS Text组件Span间距解决方案</a></dt> <dd class="news-txt"> <p class="f-gray f-13">HarmonyOSText组件Span间距解决方案一、问题分析在HarmonyOS开发中,Text组件内的Span子组件无法直接设置margin/padding属性,需要通过文本级属性实现间距控制。...</p> </dd> </dl> <dl class="news-box clearfix pd20 "> <dt class="f-18 mb10"><a href="http://www.zhezhongyun.com/post/4460.html" title="考“火车驾驶证”,难不难?(火车驾驶证怎么考需要什么条件)" class="f-black" target="_blank">考“火车驾驶证”,难不难?(火车驾驶证怎么考需要什么条件)</a></dt> <dd class="news-txt"> <p class="f-gray f-13">····<animateattributeName="height"begin="0.1"dur="0.01s"fill="freeze"to="0"/>00:0002:59未加...</p> </dd> </dl> <dl class="news-box clearfix pd20 "> <dt class="f-18 mb10"><a href="http://www.zhezhongyun.com/post/4459.html" title="高温?京铁人:我有“物理外挂”!(点开看有多爽)" class="f-black" target="_blank">高温?京铁人:我有“物理外挂”!(点开看有多爽)</a></dt> <dd class="news-txt"> <p class="f-gray f-13">近几日华北地区气温不断上升高温来袭坚守岗位的京铁人开启清凉避暑的“物理外挂”快动动手指点开看看吧·<animateattributeName="opacity"begin="click+0....</p> </dd> </dl> <dl class="news-box clearfix pd20 "> <dt class="f-18 mb10"><a href="http://www.zhezhongyun.com/post/4458.html" title="2025年Top30 CSS面试题及答案(css常考面试题)" class="f-black" target="_blank">2025年Top30 CSS面试题及答案(css常考面试题)</a></dt> <dd class="news-txt"> <p class="f-gray f-13">概述CSS(层叠样式表)是构建美观、响应式网站的关键技术。无论您是在准备前端开发者面试还是复习知识,这里都有一份精心挑选的2025年每个开发者都应该知道的30个CSS面试题及答案。1.什么是CSS...</p> </dd> </dl> </div> </div> <div class="side-box col-6 col-m-24 col2-"> <dl class="side-hot"> <dt>一周热门</dt> <dd> <ul> <li> <a href="http://www.zhezhongyun.com/post/513.html" title="b端详情页:各种信息聚集地,设计师要如何规划这一亩三分地呢" target="_blank"> <h2 class="f-15">b端详情页:各种信息聚集地,设计师要如何规划这一亩三分地呢</h2> </a> </li> <li> <a href="http://www.zhezhongyun.com/post/1123.html" title="漏洞系列一一看我一招征服漏洞 SSRF" target="_blank"> <h2 class="f-15">漏洞系列一一看我一招征服漏洞 SSRF</h2> </a> </li> <li> <a href="http://www.zhezhongyun.com/post/1118.html" title="接口测试遇到500报错?别慌,你的头部可能有点问题" target="_blank"> <h2 class="f-15">接口测试遇到500报错?别慌,你的头部可能有点问题</h2> </a> </li> <li> <a href="http://www.zhezhongyun.com/post/1120.html" title="Web前端需要学什么?Web前端开发需要学习哪些?" target="_blank"> <h2 class="f-15">Web前端需要学什么?Web前端开发需要学习哪些?</h2> </a> </li> <li> <a href="http://www.zhezhongyun.com/post/1140.html" title="「资讯」为强迫用户使用Edge浏览器,微软又出新招数" target="_blank"> <h2 class="f-15">「资讯」为强迫用户使用Edge浏览器,微软又出新招数</h2> </a> </li> <li> <a href="http://www.zhezhongyun.com/post/1689.html" title="前端Flex布局可视化布局工具介绍,vue和html5快速设计利器" target="_blank"> <h2 class="f-15">前端Flex布局可视化布局工具介绍,vue和html5快速设计利器</h2> </a> </li> <li> <a href="http://www.zhezhongyun.com/post/1682.html" title="HTML 简介(html简介及优缺点)" target="_blank"> <h2 class="f-15">HTML 简介(html简介及优缺点)</h2> </a> </li> <li> <a href="http://www.zhezhongyun.com/post/1242.html" title="HBuilderX,uni-app创建HTML5项目,同时支持浏览器和移动端" target="_blank"> <h2 class="f-15">HBuilderX,uni-app创建HTML5项目,同时支持浏览器和移动端</h2> </a> </li> <li> <a href="http://www.zhezhongyun.com/post/1684.html" title="关于HTML5被简称做H5,你怎么看?(html5缩写)" target="_blank"> <h2 class="f-15">关于HTML5被简称做H5,你怎么看?(html5缩写)</h2> </a> </li> <li> <a href="http://www.zhezhongyun.com/post/1499.html" title="现在页面实时聊天都使用Websocket技术实现吗?" target="_blank"> <h2 class="f-15">现在页面实时聊天都使用Websocket技术实现吗?</h2> </a> </li> </ul> </dd> </dl> <dl class="function" id="divPrevious"> <dt class="function_t">最近发表</dt><dd class="function_c"> <ul><li><a title="css 垂直居中的几种实现方式(css怎么实现垂直居中)" href="http://www.zhezhongyun.com/post/4472.html">css 垂直居中的几种实现方式(css怎么实现垂直居中)</a></li> <li><a title="CSS 中各种居中你真的玩明白了么(css中的居中属性)" href="http://www.zhezhongyun.com/post/4471.html">CSS 中各种居中你真的玩明白了么(css中的居中属性)</a></li> <li><a title="浅谈3种css技巧——两端对齐(css两侧对齐)" href="http://www.zhezhongyun.com/post/4470.html">浅谈3种css技巧——两端对齐(css两侧对齐)</a></li> <li><a title="从零开发HarmonyOS(鸿蒙)运动手表小游戏—数字华容道" href="http://www.zhezhongyun.com/post/4469.html">从零开发HarmonyOS(鸿蒙)运动手表小游戏—数字华容道</a></li> <li><a title="教师如何制作随机点名系统,活跃课堂气氛" href="http://www.zhezhongyun.com/post/4468.html">教师如何制作随机点名系统,活跃课堂气氛</a></li> <li><a title="看京铁人如何破解电煤运输&quot;烤&quot;验" href="http://www.zhezhongyun.com/post/4467.html">看京铁人如何破解电煤运输&quot;烤&quot;验</a></li> <li><a title="回家的路就是最美的风景 幸福就在前方" href="http://www.zhezhongyun.com/post/4466.html">回家的路就是最美的风景 幸福就在前方</a></li> <li><a title="如何做出一个香消玉殒的网页文字特效" href="http://www.zhezhongyun.com/post/4465.html">如何做出一个香消玉殒的网页文字特效</a></li> <li><a title="第1000篇原创,我想对你说______(2021我想对你说1000)" href="http://www.zhezhongyun.com/post/4464.html">第1000篇原创,我想对你说______(2021我想对你说1000)</a></li> <li><a title="动车组的“家”在哪里?(动车组的"家"在哪里?举例说明)" href="http://www.zhezhongyun.com/post/4463.html">动车组的“家”在哪里?(动车组的"家"在哪里?举例说明)</a></li> </ul> </dd> </dl> <dl class="function" id="divTags"> <dt class="function_t">标签列表</dt><dd class="function_c"> <ul><li><a title="HTML 教程" href="http://www.zhezhongyun.com/tags-1.html">HTML 教程<span class="tag-count"> (33)</span></a></li> <li><a title="HTML 简介" href="http://www.zhezhongyun.com/tags-3.html">HTML 简介<span class="tag-count"> (35)</span></a></li> <li><a title="HTML 实例/测验" href="http://www.zhezhongyun.com/tags-46.html">HTML 实例/测验<span class="tag-count"> (32)</span></a></li> <li><a title="HTML 测验" href="http://www.zhezhongyun.com/tags-47.html">HTML 测验<span class="tag-count"> (32)</span></a></li> <li><a title="JavaScript 和 HTML DOM 参考手册" href="http://www.zhezhongyun.com/tags-54.html">JavaScript 和 HTML DOM 参考手册<span class="tag-count"> (32)</span></a></li> <li><a title="HTML 拓展阅读" href="http://www.zhezhongyun.com/tags-55.html">HTML 拓展阅读<span class="tag-count"> (30)</span></a></li> <li><a title="HTML常用标签" href="http://www.zhezhongyun.com/tags-58.html">HTML常用标签<span class="tag-count"> (29)</span></a></li> <li><a title="HTML文本框样式" href="http://www.zhezhongyun.com/tags-60.html">HTML文本框样式<span class="tag-count"> (31)</span></a></li> <li><a title="HTML滚动条样式" href="http://www.zhezhongyun.com/tags-61.html">HTML滚动条样式<span class="tag-count"> (34)</span></a></li> <li><a title="HTML5 浏览器支持" href="http://www.zhezhongyun.com/tags-113.html">HTML5 浏览器支持<span class="tag-count"> (33)</span></a></li> <li><a title="HTML5 新元素" href="http://www.zhezhongyun.com/tags-114.html">HTML5 新元素<span class="tag-count"> (33)</span></a></li> <li><a title="HTML5 WebSocket" href="http://www.zhezhongyun.com/tags-131.html">HTML5 WebSocket<span class="tag-count"> (30)</span></a></li> <li><a title="HTML5 代码规范" href="http://www.zhezhongyun.com/tags-132.html">HTML5 代码规范<span class="tag-count"> (32)</span></a></li> <li><a title="HTML5 标签" href="http://www.zhezhongyun.com/tags-135.html">HTML5 标签<span class="tag-count"> (717)</span></a></li> <li><a title="HTML5 标签 (已废弃)" href="http://www.zhezhongyun.com/tags-137.html">HTML5 标签 (已废弃)<span class="tag-count"> (75)</span></a></li> <li><a title="HTML5电子书" href="http://www.zhezhongyun.com/tags-141.html">HTML5电子书<span class="tag-count"> (32)</span></a></li> <li><a title="HTML5开发工具" href="http://www.zhezhongyun.com/tags-142.html">HTML5开发工具<span class="tag-count"> (34)</span></a></li> <li><a title="HTML5小游戏源码" href="http://www.zhezhongyun.com/tags-143.html">HTML5小游戏源码<span class="tag-count"> (34)</span></a></li> <li><a title="HTML5模板下载" href="http://www.zhezhongyun.com/tags-144.html">HTML5模板下载<span class="tag-count"> (30)</span></a></li> <li><a title="HTTP 状态消息" href="http://www.zhezhongyun.com/tags-159.html">HTTP 状态消息<span class="tag-count"> (33)</span></a></li> <li><a title="HTTP 方法:GET 对比 POST" href="http://www.zhezhongyun.com/tags-160.html">HTTP 方法:GET 对比 POST<span class="tag-count"> (33)</span></a></li> <li><a title="键盘快捷键" href="http://www.zhezhongyun.com/tags-168.html">键盘快捷键<span class="tag-count"> (35)</span></a></li> <li><a title="标签" href="http://www.zhezhongyun.com/tags-171.html">标签<span class="tag-count"> (226)</span></a></li> <li><a title="HTML button formtarget 属性" href="http://www.zhezhongyun.com/tags-218.html">HTML button formtarget 属性<span class="tag-count"> (30)</span></a></li> <li><a title="CSS 水平对齐 (Horizontal Align)" href="http://www.zhezhongyun.com/tags-260.html">CSS 水平对齐 (Horizontal Align)<span class="tag-count"> (30)</span></a></li> </ul> </dd> </dl> </div> </div> </div> </div> <div class="footer"> <div class="wide ta-c f-12"> </div> </div> <div class="fixed-box "> <ul> <li class="pchide wapflex"><a href="http://www.zhezhongyun.com/"><i class="fa fa-home"></i> 首页</a></li> <li><a href="http://www.zhezhongyun.com/shoulu.html" title="收录申请" target="_blank"><i class="fa fa-chain-broken mr5"></i>收录</a></li> <li><span class="gotop"><i class="fa fa-caret-up mr5"></i> 顶部</span></li> </ul> </div> <script src="http://www.zhezhongyun.com/zb_users/theme/tx_hao/script/txcstx.min.js?v=2024-12-04"></script> </body> </html><!--151.41 ms , 13 queries , 4990kb memory , 0 error-->