亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Home Web Front-end JS Tutorial React v The Stable Release and What's New

React v The Stable Release and What's New

Dec 09, 2024 am 12:12 AM

React v The Stable Release and What’s New

React 19 has officially landed, bringing a wealth of new features and enhancements that simplify development and improve application performance. From improved state management to better server-side integration, React 19 has something for everyone.


Key Features in React 19 :

1. Actions for Simplified Async State Management

Managing async operations like API requests has always been a common challenge in React. React 19 introduces Actions, which automate pending states, error handling, and optimistic updates.

Example: Simplified Form Submission with

Actions

import { useActionState } from "react";

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

  return (
    <form action={submitAction}>
      <input type="text" name="name" />
      <button type="submit" disabled={isPending}>
        Update
      </button>
      {error && <p>{error}</p>}
    </form>
  );
}

Here, useActionState manages the submission state and error handling for you, making the code cleaner and easier to maintain.


2. Optimistic Updates with useOptimistic

Optimistic UI updates let users see changes immediately while an async request is in progress. The new useOptimistic hook makes this pattern straightforward.

Example: Optimistic Name Change

import { useOptimistic } from "react";

function ChangeName({ currentName, onUpdateName }) {
  const [optimisticName, setOptimisticName] = useOptimistic(currentName);

  const submitAction = async (formData) => {
    const newName = formData.get("name");
    setOptimisticName(newName); // Show optimistic state
    const updatedName = await updateName(newName); // Wait for the async request
    onUpdateName(updatedName); // Update the actual state
  };

  return (
    <form action={submitAction}>
      <p>Your name: {optimisticName}</p>
      <input type="text" name="name" />
      <button type="submit">Change Name</button>
    </form>
  );
}

useOptimistic ensures a seamless user experience by showing updates even before the server responds.


3. Enhanced Error Reporting for Hydration Mismatches

React 19 improves error handling, particularly for hydration errors. Instead of vague errors, you now get detailed diffs of mismatched content between the server and client.

Example: Hydration Error Diff

Uncaught Error: Hydration failed because the server-rendered HTML didn’t match the client.
Tree mismatch:
+ Client: <span>Welcome</span>
- Server: <span>Hello</span>

These clear messages help developers debug issues quickly and efficiently.


4. Server Components and Server Actions

React Server Components (RSCs) allow components to be rendered on the server, improving performance. Server Actions enable calling async functions on the server directly from Client Components.

Example: Using Server Actions

// Server Component
export const fetchComments = async () => {
  const response = await fetch("/api/comments");
  return await response.json();
};

// Client Component
import { use } from "react";

function Comments({ commentsPromise }) {
  const comments = use(commentsPromise); // Suspends until resolved
  return (
    <ul>
      {comments.map((comment) => (
        <li key={comment.id}>{comment.text}</li>
      ))}
    </ul>
  );
}

// Usage
function App() {
  return (
    <Suspense fallback={<p>Loading comments...</p>}>
      <Comments commentsPromise={fetchComments()} />
    </Suspense>
  );
}

Server Actions streamline fetching and rendering server-side data within Client Components.


5. Native Metadata and Stylesheet Management

React 19 now supports , <link>, and <meta> tags natively, simplifying document metadata management.</p> <p><strong>Example: Dynamic Metadata in Components</strong><br> </p> <pre class="brush:php;toolbar:false">function BlogPost({ title, keywords }) { return ( <article> <h1>{title}</h1> <title>{title}</title> <meta name="keywords" content={keywords.join(", ")} /> <p>Content of the blog post...</p> </article> ); } </pre> <p>React ensures these tags are rendered in the <head> section automatically, improving SEO and usability.</p> <p><strong>Example: Managed Stylesheets</strong><br> </p> <pre class="brush:php;toolbar:false">import { useActionState } from "react"; function UpdateNameForm() { const [error, submitAction, isPending] = useActionState( async (prevState, formData) => { const name = formData.get("name"); const error = await updateName(name); if (error) { return error; } redirect("/profile"); return null; }, null ); return ( <form action={submitAction}> <input type="text" name="name" /> <button type="submit" disabled={isPending}> Update </button> {error && <p>{error}</p>} </form> ); } </pre> <p>React ensures stylesheets are loaded in the correct order and only once, even when referenced multiple times.</p> <hr> <h3> <strong>Why Upgrade to React 19?</strong> </h3> <p>React 19’s new features significantly reduce boilerplate code, improve application performance, and enhance the development experience. Features like <strong>Actions</strong>, <strong>Optimistic Updates</strong>, and <strong>Server Components</strong> empower developers to build dynamic, responsive, and scalable applications with less effort.</p> <hr> <h3> <strong>How to Upgrade</strong> </h3> <p>Follow the React 19 Upgrade Guide for a smooth transition. Ensure you test thoroughly and address any breaking changes outlined in the guide.</p> <hr> <p>React 19 is a game-changer, combining simplicity, power, and performance. Start experimenting with these new features and elevate your React projects to the next level!</p> <p>The above is the detailed content of React v The Stable Release and What's New. For more information, please follow other related articles on the PHP Chinese website!</p> </div> </div> <div id="wjcelcm34c" class="wzconShengming_sp"> <div id="wjcelcm34c" class="bzsmdiv_sp">Statement of this Website</div> <div>The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn</div> </div> </div> <ins class="adsbygoogle" style="display:block" data-ad-format="autorelaxed" data-ad-client="ca-pub-5902227090019525" data-ad-slot="2507867629"></ins> <div id="wjcelcm34c" class="AI_ToolDetails_main4sR"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5902227090019525" data-ad-slot="3653428331" data-ad-format="auto" data-full-width-responsive="true"></ins> <!-- <div id="wjcelcm34c" class="phpgenera_Details_mainR4"> <div id="wjcelcm34c" class="phpmain1_4R_readrank"> <div id="wjcelcm34c" class="phpmain1_4R_readrank_top"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/hotarticle2.png" alt="" /> <h2>Hot Article</h2> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottom"> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms"> <a href="http://ipnx.cn/faq/1796832397.html" title="Grass Wonder Build Guide | Uma Musume Pretty Derby" class="phpgenera_Details_mainR4_bottom_title">Grass Wonder Build Guide | Uma Musume Pretty Derby</a> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_info"> <span>3 weeks ago</span> <span>By Jack chen</span> </div> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms"> <a href="http://ipnx.cn/faq/1796833110.html" title="Roblox: 99 Nights In The Forest - All Badges And How To Unlock Them" class="phpgenera_Details_mainR4_bottom_title">Roblox: 99 Nights In The Forest - All Badges And How To Unlock Them</a> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_info"> <span>3 weeks ago</span> <span>By DDD</span> </div> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms"> <a href="http://ipnx.cn/faq/1796831605.html" title="Uma Musume Pretty Derby Banner Schedule (July 2025)" class="phpgenera_Details_mainR4_bottom_title">Uma Musume Pretty Derby Banner Schedule (July 2025)</a> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_info"> <span>4 weeks ago</span> <span>By Jack chen</span> </div> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms"> <a href="http://ipnx.cn/faq/1796829586.html" title="Today's Connections hint and answer 3rd July for 753" class="phpgenera_Details_mainR4_bottom_title">Today's Connections hint and answer 3rd July for 753</a> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_info"> <span>1 months ago</span> <span>By Jack chen</span> </div> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms"> <a href="http://ipnx.cn/faq/1796831905.html" title="Windows Security is blank or not showing options" class="phpgenera_Details_mainR4_bottom_title">Windows Security is blank or not showing options</a> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_info"> <span>4 weeks ago</span> <span>By 下次還敢</span> </div> </div> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR3_more"> <a href="http://ipnx.cn/article.html">Show More</a> </div> </div> </div> --> <div id="wjcelcm34c" class="phpgenera_Details_mainR3"> <div id="wjcelcm34c" class="phpmain1_4R_readrank"> <div id="wjcelcm34c" class="phpmain1_4R_readrank_top"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/hottools2.png" alt="" /> <h2>Hot AI Tools</h2> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR3_bottom"> <div id="wjcelcm34c" class="phpmain_tab2_mids_top"> <a href="http://ipnx.cn/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173410641626608.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undress AI Tool" /> </a> <div id="wjcelcm34c" class="phpmain_tab2_mids_info"> <a href="http://ipnx.cn/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_title"> <h3>Undress AI Tool</h3> </a> <p>Undress images for free</p> </div> </div> <div id="wjcelcm34c" class="phpmain_tab2_mids_top"> <a href="http://ipnx.cn/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411540686492.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undresser.AI Undress" /> </a> <div id="wjcelcm34c" class="phpmain_tab2_mids_info"> <a href="http://ipnx.cn/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_title"> <h3>Undresser.AI Undress</h3> </a> <p>AI-powered app for creating realistic nude photos</p> </div> </div> <div id="wjcelcm34c" class="phpmain_tab2_mids_top"> <a href="http://ipnx.cn/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411552797167.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="AI Clothes Remover" /> </a> <div id="wjcelcm34c" class="phpmain_tab2_mids_info"> <a href="http://ipnx.cn/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_title"> <h3>AI Clothes Remover</h3> </a> <p>Online AI tool for removing clothes from photos.</p> </div> </div> <div id="wjcelcm34c" class="phpmain_tab2_mids_top"> <a href="http://ipnx.cn/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411529149311.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Clothoff.io" /> </a> <div id="wjcelcm34c" class="phpmain_tab2_mids_info"> <a href="http://ipnx.cn/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_title"> <h3>Clothoff.io</h3> </a> <p>AI clothes remover</p> </div> </div> <div id="wjcelcm34c" class="phpmain_tab2_mids_top"> <a href="http://ipnx.cn/ai/video-swap" title="Video Face Swap" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173414504068133.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Video Face Swap" /> </a> <div id="wjcelcm34c" class="phpmain_tab2_mids_info"> <a href="http://ipnx.cn/ai/video-swap" title="Video Face Swap" class="phpmain_tab2_mids_title"> <h3>Video Face Swap</h3> </a> <p>Swap faces in any video effortlessly with our completely free AI face swap tool!</p> </div> </div> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR3_more"> <a href="http://ipnx.cn/ai">Show More</a> </div> </div> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR4"> <div id="wjcelcm34c" class="phpmain1_4R_readrank"> <div id="wjcelcm34c" class="phpmain1_4R_readrank_top"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/hotarticle2.png" alt="" /> <h2>Hot Article</h2> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottom"> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms"> <a href="http://ipnx.cn/faq/1796832397.html" title="Grass Wonder Build Guide | Uma Musume Pretty Derby" class="phpgenera_Details_mainR4_bottom_title">Grass Wonder Build Guide | Uma Musume Pretty Derby</a> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_info"> <span>3 weeks ago</span> <span>By Jack chen</span> </div> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms"> <a href="http://ipnx.cn/faq/1796833110.html" title="Roblox: 99 Nights In The Forest - All Badges And How To Unlock Them" class="phpgenera_Details_mainR4_bottom_title">Roblox: 99 Nights In The Forest - All Badges And How To Unlock Them</a> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_info"> <span>3 weeks ago</span> <span>By DDD</span> </div> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms"> <a href="http://ipnx.cn/faq/1796831605.html" title="Uma Musume Pretty Derby Banner Schedule (July 2025)" class="phpgenera_Details_mainR4_bottom_title">Uma Musume Pretty Derby Banner Schedule (July 2025)</a> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_info"> <span>4 weeks ago</span> <span>By Jack chen</span> </div> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms"> <a href="http://ipnx.cn/faq/1796829586.html" title="Today's Connections hint and answer 3rd July for 753" class="phpgenera_Details_mainR4_bottom_title">Today's Connections hint and answer 3rd July for 753</a> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_info"> <span>1 months ago</span> <span>By Jack chen</span> </div> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms"> <a href="http://ipnx.cn/faq/1796831905.html" title="Windows Security is blank or not showing options" class="phpgenera_Details_mainR4_bottom_title">Windows Security is blank or not showing options</a> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_info"> <span>4 weeks ago</span> <span>By 下次還敢</span> </div> </div> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR3_more"> <a href="http://ipnx.cn/article.html">Show More</a> </div> </div> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR3"> <div id="wjcelcm34c" class="phpmain1_4R_readrank"> <div id="wjcelcm34c" class="phpmain1_4R_readrank_top"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/hottools2.png" alt="" /> <h2>Hot Tools</h2> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR3_bottom"> <div id="wjcelcm34c" class="phpmain_tab2_mids_top"> <a href="http://ipnx.cn/toolset/development-tools/92" title="Notepad++7.3.1" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/manual/000/000/001/58ab96f0f39f7357.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="Notepad++7.3.1" /> </a> <div id="wjcelcm34c" class="phpmain_tab2_mids_info"> <a href="http://ipnx.cn/toolset/development-tools/92" title="Notepad++7.3.1" class="phpmain_tab2_mids_title"> <h3>Notepad++7.3.1</h3> </a> <p>Easy-to-use and free code editor</p> </div> </div> <div id="wjcelcm34c" class="phpmain_tab2_mids_top"> <a href="http://ipnx.cn/toolset/development-tools/93" title="SublimeText3 Chinese version" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/manual/000/000/001/58ab97a3baad9677.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3 Chinese version" /> </a> <div id="wjcelcm34c" class="phpmain_tab2_mids_info"> <a href="http://ipnx.cn/toolset/development-tools/93" title="SublimeText3 Chinese version" class="phpmain_tab2_mids_title"> <h3>SublimeText3 Chinese version</h3> </a> <p>Chinese version, very easy to use</p> </div> </div> <div id="wjcelcm34c" class="phpmain_tab2_mids_top"> <a href="http://ipnx.cn/toolset/development-tools/121" title="Zend Studio 13.0.1" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/manual/000/000/001/58ab97ecd1ab2670.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="Zend Studio 13.0.1" /> </a> <div id="wjcelcm34c" class="phpmain_tab2_mids_info"> <a href="http://ipnx.cn/toolset/development-tools/121" title="Zend Studio 13.0.1" class="phpmain_tab2_mids_title"> <h3>Zend Studio 13.0.1</h3> </a> <p>Powerful PHP integrated development environment</p> </div> </div> <div id="wjcelcm34c" class="phpmain_tab2_mids_top"> <a href="http://ipnx.cn/toolset/development-tools/469" title="Dreamweaver CS6" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/manual/000/000/001/58d0e0fc74683535.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="Dreamweaver CS6" /> </a> <div id="wjcelcm34c" class="phpmain_tab2_mids_info"> <a href="http://ipnx.cn/toolset/development-tools/469" title="Dreamweaver CS6" class="phpmain_tab2_mids_title"> <h3>Dreamweaver CS6</h3> </a> <p>Visual web development tools</p> </div> </div> <div id="wjcelcm34c" class="phpmain_tab2_mids_top"> <a href="http://ipnx.cn/toolset/development-tools/500" title="SublimeText3 Mac version" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/manual/000/000/001/58d34035e2757995.png?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3 Mac version" /> </a> <div id="wjcelcm34c" class="phpmain_tab2_mids_info"> <a href="http://ipnx.cn/toolset/development-tools/500" title="SublimeText3 Mac version" class="phpmain_tab2_mids_title"> <h3>SublimeText3 Mac version</h3> </a> <p>God-level code editing software (SublimeText3)</p> </div> </div> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR3_more"> <a href="http://ipnx.cn/ai">Show More</a> </div> </div> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR4"> <div id="wjcelcm34c" class="phpmain1_4R_readrank"> <div id="wjcelcm34c" class="phpmain1_4R_readrank_top"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/hotarticle2.png" alt="" /> <h2>Hot Topics</h2> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottom"> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms"> <a href="http://ipnx.cn/faq/laravel-tutori" title="Laravel Tutorial" class="phpgenera_Details_mainR4_bottom_title">Laravel Tutorial</a> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_info"> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/eyess.png" alt="" /> <span>1597</span> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/tiezi.png" alt="" /> <span>29</span> </div> </div> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms"> <a href="http://ipnx.cn/faq/php-tutorial" title="PHP Tutorial" class="phpgenera_Details_mainR4_bottom_title">PHP Tutorial</a> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_info"> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/eyess.png" alt="" /> <span>1488</span> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/tiezi.png" alt="" /> <span>72</span> </div> </div> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms"> <a href="http://ipnx.cn/faq/nytminicrosswordanswe" title="nyt mini crossword answers" class="phpgenera_Details_mainR4_bottom_title">nyt mini crossword answers</a> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_info"> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/eyess.png" alt="" /> <span>268</span> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/tiezi.png" alt="" /> <span>587</span> </div> </div> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms"> <a href="http://ipnx.cn/faq/newyorktimesdailybrief" title="nyt connections hints and answers" class="phpgenera_Details_mainR4_bottom_title">nyt connections hints and answers</a> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_info"> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/eyess.png" alt="" /> <span>131</span> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/tiezi.png" alt="" /> <span>836</span> </div> </div> </div> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainR3_more"> <a href="http://ipnx.cn/faq/zt">Show More</a> </div> </div> </div> </div> </div> <div id="wjcelcm34c" class="Article_Details_main2"> <div id="wjcelcm34c" class="phpgenera_Details_mainL4"> <div id="wjcelcm34c" class="phpmain1_2_top"> <a href="javascript:void(0);" class="phpmain1_2_top_title">Related knowledge<img src="/static/imghw/index2_title2.png" alt="" /></a> </div> <div id="wjcelcm34c" class="phpgenera_Details_mainL4_info"> <div id="wjcelcm34c" class="phphistorical_Version2_mids"> <a href="http://ipnx.cn/faq/1796829560.html" title="How does garbage collection work in JavaScript?" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/001/253/068/175156097152256.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="How does garbage collection work in JavaScript?" /> </a> <a href="http://ipnx.cn/faq/1796829560.html" title="How does garbage collection work in JavaScript?" class="phphistorical_Version2_mids_title">How does garbage collection work in JavaScript?</a> <span id="wjcelcm34c" class="Articlelist_txts_time">Jul 04, 2025 am 12:42 AM</span> <p class="Articlelist_txts_p">JavaScript's garbage collection mechanism automatically manages memory through a tag-clearing algorithm to reduce the risk of memory leakage. The engine traverses and marks the active object from the root object, and unmarked is treated as garbage and cleared. For example, when the object is no longer referenced (such as setting the variable to null), it will be released in the next round of recycling. Common causes of memory leaks include: ① Uncleared timers or event listeners; ② References to external variables in closures; ③ Global variables continue to hold a large amount of data. The V8 engine optimizes recycling efficiency through strategies such as generational recycling, incremental marking, parallel/concurrent recycling, and reduces the main thread blocking time. During development, unnecessary global references should be avoided and object associations should be promptly decorated to improve performance and stability.</p> </div> <div id="wjcelcm34c" class="phphistorical_Version2_mids"> <a href="http://ipnx.cn/faq/1796836217.html" title="How to make an HTTP request in Node.js?" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/001/431/639/175234432058757.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="How to make an HTTP request in Node.js?" /> </a> <a href="http://ipnx.cn/faq/1796836217.html" title="How to make an HTTP request in Node.js?" class="phphistorical_Version2_mids_title">How to make an HTTP request in Node.js?</a> <span id="wjcelcm34c" class="Articlelist_txts_time">Jul 13, 2025 am 02:18 AM</span> <p class="Articlelist_txts_p">There are three common ways to initiate HTTP requests in Node.js: use built-in modules, axios, and node-fetch. 1. Use the built-in http/https module without dependencies, which is suitable for basic scenarios, but requires manual processing of data stitching and error monitoring, such as using https.get() to obtain data or send POST requests through .write(); 2.axios is a third-party library based on Promise. It has concise syntax and powerful functions, supports async/await, automatic JSON conversion, interceptor, etc. It is recommended to simplify asynchronous request operations; 3.node-fetch provides a style similar to browser fetch, based on Promise and simple syntax</p> </div> <div id="wjcelcm34c" class="phphistorical_Version2_mids"> <a href="http://ipnx.cn/faq/1796836292.html" title="JavaScript Data Types: Primitive vs Reference" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/001/431/639/175234579081669.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="JavaScript Data Types: Primitive vs Reference" /> </a> <a href="http://ipnx.cn/faq/1796836292.html" title="JavaScript Data Types: Primitive vs Reference" class="phphistorical_Version2_mids_title">JavaScript Data Types: Primitive vs Reference</a> <span id="wjcelcm34c" class="Articlelist_txts_time">Jul 13, 2025 am 02:43 AM</span> <p class="Articlelist_txts_p">JavaScript data types are divided into primitive types and reference types. Primitive types include string, number, boolean, null, undefined, and symbol. The values are immutable and copies are copied when assigning values, so they do not affect each other; reference types such as objects, arrays and functions store memory addresses, and variables pointing to the same object will affect each other. Typeof and instanceof can be used to determine types, but pay attention to the historical issues of typeofnull. Understanding these two types of differences can help write more stable and reliable code.</p> </div> <div id="wjcelcm34c" class="phphistorical_Version2_mids"> <a href="http://ipnx.cn/faq/1796832745.html" title="JavaScript time object, someone builds an eactexe, faster website on Google Chrome, etc." class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/001/246/273/173914572643912.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="JavaScript time object, someone builds an eactexe, faster website on Google Chrome, etc." /> </a> <a href="http://ipnx.cn/faq/1796832745.html" title="JavaScript time object, someone builds an eactexe, faster website on Google Chrome, etc." class="phphistorical_Version2_mids_title">JavaScript time object, someone builds an eactexe, faster website on Google Chrome, etc.</a> <span id="wjcelcm34c" class="Articlelist_txts_time">Jul 08, 2025 pm 02:27 PM</span> <p class="Articlelist_txts_p">Hello, JavaScript developers! Welcome to this week's JavaScript news! This week we will focus on: Oracle's trademark dispute with Deno, new JavaScript time objects are supported by browsers, Google Chrome updates, and some powerful developer tools. Let's get started! Oracle's trademark dispute with Deno Oracle's attempt to register a "JavaScript" trademark has caused controversy. Ryan Dahl, the creator of Node.js and Deno, has filed a petition to cancel the trademark, and he believes that JavaScript is an open standard and should not be used by Oracle</p> </div> <div id="wjcelcm34c" class="phphistorical_Version2_mids"> <a href="http://ipnx.cn/faq/1796830657.html" title="React vs Angular vs Vue: which js framework is best?" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/001/431/639/175165349052637.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="React vs Angular vs Vue: which js framework is best?" /> </a> <a href="http://ipnx.cn/faq/1796830657.html" title="React vs Angular vs Vue: which js framework is best?" class="phphistorical_Version2_mids_title">React vs Angular vs Vue: which js framework is best?</a> <span id="wjcelcm34c" class="Articlelist_txts_time">Jul 05, 2025 am 02:24 AM</span> <p class="Articlelist_txts_p">Which JavaScript framework is the best choice? The answer is to choose the most suitable one according to your needs. 1.React is flexible and free, suitable for medium and large projects that require high customization and team architecture capabilities; 2. Angular provides complete solutions, suitable for enterprise-level applications and long-term maintenance; 3. Vue is easy to use, suitable for small and medium-sized projects or rapid development. In addition, whether there is an existing technology stack, team size, project life cycle and whether SSR is needed are also important factors in choosing a framework. In short, there is no absolutely the best framework, the best choice is the one that suits your needs.</p> </div> <div id="wjcelcm34c" class="phphistorical_Version2_mids"> <a href="http://ipnx.cn/faq/1796829862.html" title="Understanding Immediately Invoked Function Expressions (IIFE) in JavaScript" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/001/253/068/175156814092778.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Understanding Immediately Invoked Function Expressions (IIFE) in JavaScript" /> </a> <a href="http://ipnx.cn/faq/1796829862.html" title="Understanding Immediately Invoked Function Expressions (IIFE) in JavaScript" class="phphistorical_Version2_mids_title">Understanding Immediately Invoked Function Expressions (IIFE) in JavaScript</a> <span id="wjcelcm34c" class="Articlelist_txts_time">Jul 04, 2025 am 02:42 AM</span> <p class="Articlelist_txts_p">IIFE (ImmediatelyInvokedFunctionExpression) is a function expression executed immediately after definition, used to isolate variables and avoid contaminating global scope. It is called by wrapping the function in parentheses to make it an expression and a pair of brackets immediately followed by it, such as (function(){/code/})();. Its core uses include: 1. Avoid variable conflicts and prevent duplication of naming between multiple scripts; 2. Create a private scope to make the internal variables invisible; 3. Modular code to facilitate initialization without exposing too many variables. Common writing methods include versions passed with parameters and versions of ES6 arrow function, but note that expressions and ties must be used.</p> </div> <div id="wjcelcm34c" class="phphistorical_Version2_mids"> <a href="http://ipnx.cn/faq/1796832608.html" title="Handling Promises: Chaining, Error Handling, and Promise Combinators in JavaScript" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/001/253/068/175191360175213.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Handling Promises: Chaining, Error Handling, and Promise Combinators in JavaScript" /> </a> <a href="http://ipnx.cn/faq/1796832608.html" title="Handling Promises: Chaining, Error Handling, and Promise Combinators in JavaScript" class="phphistorical_Version2_mids_title">Handling Promises: Chaining, Error Handling, and Promise Combinators in JavaScript</a> <span id="wjcelcm34c" class="Articlelist_txts_time">Jul 08, 2025 am 02:40 AM</span> <p class="Articlelist_txts_p">Promise is the core mechanism for handling asynchronous operations in JavaScript. Understanding chain calls, error handling and combiners is the key to mastering their applications. 1. The chain call returns a new Promise through .then() to realize asynchronous process concatenation. Each .then() receives the previous result and can return a value or a Promise; 2. Error handling should use .catch() to catch exceptions to avoid silent failures, and can return the default value in catch to continue the process; 3. Combinators such as Promise.all() (successfully successful only after all success), Promise.race() (the first completion is returned) and Promise.allSettled() (waiting for all completions)</p> </div> <div id="wjcelcm34c" class="phphistorical_Version2_mids"> <a href="http://ipnx.cn/faq/1796832618.html" title="What is the cache API and how is it used with Service Workers?" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/001/253/068/175191380054750.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="What is the cache API and how is it used with Service Workers?" /> </a> <a href="http://ipnx.cn/faq/1796832618.html" title="What is the cache API and how is it used with Service Workers?" class="phphistorical_Version2_mids_title">What is the cache API and how is it used with Service Workers?</a> <span id="wjcelcm34c" class="Articlelist_txts_time">Jul 08, 2025 am 02:43 AM</span> <p class="Articlelist_txts_p">CacheAPI is a tool provided by the browser to cache network requests, which is often used in conjunction with ServiceWorker to improve website performance and offline experience. 1. It allows developers to manually store resources such as scripts, style sheets, pictures, etc.; 2. It can match cache responses according to requests; 3. It supports deleting specific caches or clearing the entire cache; 4. It can implement cache priority or network priority strategies through ServiceWorker listening to fetch events; 5. It is often used for offline support, speed up repeated access speed, preloading key resources and background update content; 6. When using it, you need to pay attention to cache version control, storage restrictions and the difference from HTTP caching mechanism.</p> </div> </div> <a href="http://ipnx.cn/web-designer.html" class="phpgenera_Details_mainL4_botton"> <span>See all articles</span> <img src="/static/imghw/down_right.png" alt="" /> </a> </div> </div> </div> </main> <footer> <div id="wjcelcm34c" class="footer"> <div id="wjcelcm34c" class="footertop"> <img src="/static/imghw/logo.png" alt=""> <p>Public welfare online PHP training,Help PHP learners grow quickly!</p> </div> <div id="wjcelcm34c" class="footermid"> <a href="http://ipnx.cn/about/us.html">About us</a> <a href="http://ipnx.cn/about/disclaimer.html">Disclaimer</a> <a href="http://ipnx.cn/update/article_0_1.html">Sitemap</a> </div> <div id="wjcelcm34c" class="footerbottom"> <p> ? php.cn All rights reserved </p> </div> </div> </footer> <input type="hidden" id="verifycode" value="/captcha.html"> <link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css?2' type='text/css' media='all' /> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://ipnx.cn/" title="亚洲国产日韩欧美一区二区三区">亚洲国产日韩欧美一区二区三区</a> <div class="friend-links"> </div> </div> </footer> <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body><div id="8inyu" class="pl_css_ganrao" style="display: none;"><samp id="8inyu"><del id="8inyu"><noframes id="8inyu"><form id="8inyu"></form></noframes></del></samp><output id="8inyu"></output><s id="8inyu"><p id="8inyu"></p></s><form id="8inyu"></form><small id="8inyu"></small><small id="8inyu"><output id="8inyu"></output></small><strike id="8inyu"><ol id="8inyu"></ol></strike><em id="8inyu"></em><option id="8inyu"><em id="8inyu"><output id="8inyu"><blockquote id="8inyu"></blockquote></output></em></option><dfn id="8inyu"><li id="8inyu"><b id="8inyu"><pre id="8inyu"></pre></b></li></dfn><em id="8inyu"><rp id="8inyu"></rp></em><i id="8inyu"></i><thead id="8inyu"><xmp id="8inyu"></xmp></thead><video id="8inyu"><tt id="8inyu"><option id="8inyu"></option></tt></video><meter id="8inyu"><address id="8inyu"><div id="8inyu"><big id="8inyu"></big></div></address></meter><ul id="8inyu"></ul><output id="8inyu"></output><em id="8inyu"><dfn id="8inyu"><li id="8inyu"><video id="8inyu"></video></li></dfn></em><mark id="8inyu"><legend id="8inyu"><pre id="8inyu"><u id="8inyu"></u></pre></legend></mark><li id="8inyu"><samp id="8inyu"><center id="8inyu"><object id="8inyu"></object></center></samp></li><strike id="8inyu"></strike><button id="8inyu"></button><ins id="8inyu"><sup id="8inyu"><big id="8inyu"></big></sup></ins><strike id="8inyu"></strike><rt id="8inyu"><form id="8inyu"><pre id="8inyu"><sup id="8inyu"></sup></pre></form></rt><listing id="8inyu"></listing><strong id="8inyu"><th id="8inyu"></th></strong><legend id="8inyu"></legend><tbody id="8inyu"><legend id="8inyu"><big id="8inyu"></big></legend></tbody><tr id="8inyu"></tr><em id="8inyu"><dfn id="8inyu"><p id="8inyu"><form id="8inyu"></form></p></dfn></em><bdo id="8inyu"></bdo><sup id="8inyu"><rp id="8inyu"><optgroup id="8inyu"><sup id="8inyu"></sup></optgroup></rp></sup><video id="8inyu"><track id="8inyu"><option id="8inyu"><listing id="8inyu"></listing></option></track></video><strike id="8inyu"></strike><label id="8inyu"></label><b id="8inyu"></b><wbr id="8inyu"></wbr><thead id="8inyu"><dd id="8inyu"><blockquote id="8inyu"><button id="8inyu"></button></blockquote></dd></thead><rt id="8inyu"></rt><ul id="8inyu"></ul><meter id="8inyu"><del id="8inyu"><kbd id="8inyu"><form id="8inyu"></form></kbd></del></meter><pre id="8inyu"></pre><var id="8inyu"><thead id="8inyu"><dd id="8inyu"><pre id="8inyu"></pre></dd></thead></var><thead id="8inyu"></thead><div id="8inyu"><font id="8inyu"><track id="8inyu"><style id="8inyu"></style></track></font></div><dd id="8inyu"><em id="8inyu"></em></dd><dfn id="8inyu"></dfn><var id="8inyu"><strong id="8inyu"><cite id="8inyu"></cite></strong></var><listing id="8inyu"></listing><b id="8inyu"></b><legend id="8inyu"></legend><div id="8inyu"><big id="8inyu"><progress id="8inyu"><del id="8inyu"></del></progress></big></div><em id="8inyu"><mark id="8inyu"></mark></em><b id="8inyu"><tbody id="8inyu"></tbody></b><i id="8inyu"></i><optgroup id="8inyu"></optgroup><source id="8inyu"></source><fieldset id="8inyu"></fieldset><video id="8inyu"><pre id="8inyu"><ol id="8inyu"><tbody id="8inyu"></tbody></ol></pre></video><var id="8inyu"></var><rp id="8inyu"></rp><small id="8inyu"><dfn id="8inyu"><p id="8inyu"></p></dfn></small><output id="8inyu"></output><small id="8inyu"><rt id="8inyu"><pre id="8inyu"><del id="8inyu"></del></pre></rt></small><rp id="8inyu"></rp><sup id="8inyu"></sup><p id="8inyu"><sub id="8inyu"><rp id="8inyu"><optgroup id="8inyu"></optgroup></rp></sub></p><optgroup id="8inyu"><sup id="8inyu"><div id="8inyu"><samp id="8inyu"></samp></div></sup></optgroup><b id="8inyu"></b><th id="8inyu"><big id="8inyu"><font id="8inyu"></font></big></th><strong id="8inyu"><dl id="8inyu"><strike id="8inyu"><tfoot id="8inyu"></tfoot></strike></dl></strong><bdo id="8inyu"></bdo><label id="8inyu"></label><td id="8inyu"><form id="8inyu"><font id="8inyu"><pre id="8inyu"></pre></font></form></td><tr id="8inyu"><samp id="8inyu"></samp></tr><rt id="8inyu"><source id="8inyu"><pre id="8inyu"></pre></source></rt><menu id="8inyu"></menu><pre id="8inyu"></pre><var id="8inyu"><wbr id="8inyu"><sub id="8inyu"><ruby id="8inyu"></ruby></sub></wbr></var><font id="8inyu"></font><ol id="8inyu"></ol><rt id="8inyu"><acronym id="8inyu"></acronym></rt><td id="8inyu"><blockquote id="8inyu"><acronym id="8inyu"></acronym></blockquote></td><strong id="8inyu"></strong><tr id="8inyu"></tr><small id="8inyu"></small><pre id="8inyu"><th id="8inyu"></th></pre><samp id="8inyu"></samp><blockquote id="8inyu"></blockquote><thead id="8inyu"><em id="8inyu"></em></thead><ins id="8inyu"></ins><span id="8inyu"></span><i id="8inyu"></i><strike id="8inyu"></strike><optgroup id="8inyu"><sup id="8inyu"></sup></optgroup><dl id="8inyu"></dl><dfn id="8inyu"></dfn><tfoot id="8inyu"></tfoot><object id="8inyu"></object><strike id="8inyu"></strike><tbody id="8inyu"></tbody><dd id="8inyu"><pre id="8inyu"><label id="8inyu"><tbody id="8inyu"></tbody></label></pre></dd><code id="8inyu"></code><rp id="8inyu"><pre id="8inyu"><s id="8inyu"><p id="8inyu"></p></s></pre></rp><object id="8inyu"><style id="8inyu"><var id="8inyu"></var></style></object><thead id="8inyu"><video id="8inyu"></video></thead><em id="8inyu"><small id="8inyu"><p id="8inyu"></p></small></em><noframes id="8inyu"><nav id="8inyu"><fieldset id="8inyu"></fieldset></nav></noframes><legend id="8inyu"><wbr id="8inyu"><center id="8inyu"></center></wbr></legend><b id="8inyu"><em id="8inyu"><abbr id="8inyu"></abbr></em></b><tt id="8inyu"><u id="8inyu"><form id="8inyu"></form></u></tt><track id="8inyu"><small id="8inyu"></small></track><dfn id="8inyu"></dfn><tt id="8inyu"></tt><pre id="8inyu"><strong id="8inyu"></strong></pre><kbd id="8inyu"></kbd><delect id="8inyu"><tt id="8inyu"><abbr id="8inyu"></abbr></tt></delect><font id="8inyu"><del id="8inyu"><dfn id="8inyu"><u id="8inyu"></u></dfn></del></font><optgroup id="8inyu"><strong id="8inyu"><style id="8inyu"></style></strong></optgroup><progress id="8inyu"><meter id="8inyu"><output id="8inyu"><u id="8inyu"></u></output></meter></progress><form id="8inyu"><optgroup id="8inyu"><th id="8inyu"></th></optgroup></form><track id="8inyu"></track><em id="8inyu"><dfn id="8inyu"></dfn></em><ruby id="8inyu"></ruby><legend id="8inyu"></legend><ol id="8inyu"><tfoot id="8inyu"></tfoot></ol><em id="8inyu"></em><center id="8inyu"></center><th id="8inyu"><code id="8inyu"></code></th><abbr id="8inyu"></abbr><pre id="8inyu"></pre><dfn id="8inyu"></dfn><abbr id="8inyu"></abbr><em id="8inyu"></em><bdo id="8inyu"></bdo><fieldset id="8inyu"></fieldset><meter id="8inyu"></meter><center id="8inyu"><dd id="8inyu"><sub id="8inyu"><tt id="8inyu"></tt></sub></dd></center><rp id="8inyu"><abbr id="8inyu"><strong id="8inyu"><style id="8inyu"></style></strong></abbr></rp><form id="8inyu"><address id="8inyu"><ruby id="8inyu"><rp id="8inyu"></rp></ruby></address></form><code id="8inyu"></code><ruby id="8inyu"></ruby><dfn id="8inyu"><i id="8inyu"></i></dfn><ul id="8inyu"><kbd id="8inyu"></kbd></ul><tt id="8inyu"><nobr id="8inyu"><i id="8inyu"><p id="8inyu"></p></i></nobr></tt><output id="8inyu"></output><em id="8inyu"></em><dfn id="8inyu"></dfn></div> </html>