處理非同步任務在 JavaScript 中至關重要,尤其是在像 React Native 這樣的環境中,資料擷取、動畫和使用者互動需要無縫運作。 Promise 提供了一種管理非同步操作的強大方法,使程式碼更具可讀性和可維護性。本部落格將介紹如何在 JavaScript 中建立和使用 Promise,以及與 React Native 相關的實際範例。
Promise 是一個表示非同步操作最終完成(或失敗)的物件。它允許我們以更同步的方式處理非同步程式碼,避免經典的「回調地獄」。 Promise 有三種狀態:
function fetchData() { return new Promise((resolve, reject) => { setTimeout(() => { const success = true; // Simulating success/failure if (success) { resolve({ data: "Sample data fetched" }); } else { reject("Error: Data could not be fetched."); } }, 2000); // Simulate a 2-second delay }); }在此範例中:
fetchData() .then((result) => console.log("Data:", result.data)) // Handle success .catch((error) => console.error("Error:", error)) // Handle failure .finally(() => console.log("Fetch attempt completed")); // Finalize在此範例中:
function fetchData(url) { return fetch(url) .then(response => { if (!response.ok) throw new Error("Network response was not ok"); return response.json(); }) .then(data => console.log("Fetched data:", data)) .catch(error => console.error("Fetch error:", error)); } // Usage fetchData("https://api.example.com/data");
用例:從 REST API 或其他網路請求獲取數據,我們需要處理成功的回應和錯誤。
有時,一個非同步任務依賴另一個非同步任務。 Promise 讓依序連結操作變得容易。
function fetchData() { return new Promise((resolve, reject) => { setTimeout(() => { const success = true; // Simulating success/failure if (success) { resolve({ data: "Sample data fetched" }); } else { reject("Error: Data could not be fetched."); } }, 2000); // Simulate a 2-second delay }); }
用例:用於登入用戶,然後根據其身分取得個人資料資料。
如果您有多個可以並行執行的獨立 Promise,Promise.all() 允許您等待所有這些 Promise 得到解決或其中任何一個被拒絕。
fetchData() .then((result) => console.log("Data:", result.data)) // Handle success .catch((error) => console.error("Error:", error)) // Handle failure .finally(() => console.log("Fetch attempt completed")); // Finalize
用例:同時取得多個資源,例如從單獨的 API 端點取得貼文和註解。
使用 Promise.race(),第一個解決(解決或拒絕)的 Promise 決定結果。當您想要為長時間運行的任務設定逾時時,這非常有用。
function fetchData(url) { return fetch(url) .then(response => { if (!response.ok) throw new Error("Network response was not ok"); return response.json(); }) .then(data => console.log("Fetched data:", data)) .catch(error => console.error("Fetch error:", error)); } // Usage fetchData("https://api.example.com/data");
用例:為網路請求設定逾時,這樣如果伺服器緩慢或無回應,它們就不會無限期掛起。
Promise.allSettled() 等待所有 Promise 解決,無論它們是解決還是拒絕。當您需要所有承諾的結果時(即使有些承諾失敗),這很有用。
function authenticateUser() { return new Promise((resolve) => { setTimeout(() => resolve({ userId: 1, name: "John Doe" }), 1000); }); } function fetchUserProfile(user) { return new Promise((resolve) => { setTimeout(() => resolve({ ...user, profile: "Profile data" }), 1000); }); } // Chain promises authenticateUser() .then(user => fetchUserProfile(user)) .then(profile => console.log("User Profile:", profile)) .catch(error => console.error("Error:", error));
用例:在執行多個請求(其中某些請求可能會失敗)時很有用,例如取得可選資料來源或進行多個 API 呼叫。
較舊的程式碼庫或某些程式庫可能使用回調而不是承諾。您可以將這些回調包裝在 Promise 中,將它們轉換為現代的基於 Promise 的函數。
const fetchPosts = fetch("https://api.example.com/posts").then(res => res.json()); const fetchComments = fetch("https://api.example.com/comments").then(res => res.json()); Promise.all([fetchPosts, fetchComments]) .then(([posts, comments]) => { console.log("Posts:", posts); console.log("Comments:", comments); }) .catch(error => console.error("Error fetching data:", error));
用例:此技術可讓您以承諾友好的方式使用基於回呼的遺留程式碼,使其與現代非同步/等待語法相容。
Promise 是管理 JavaScript 和 React Native 中非同步操作的強大工具。透過了解如何在各種場景中建立、使用和處理 Promise,您可以編寫更清晰、更易於維護的程式碼。以下是常見用例的快速回顧:
透過有效地利用 Promise,您可以讓 JavaScript 和 React Native 中的非同步程式設計更乾淨、更可預測且更健壯。
以上是JavaScript 和 React Native 中的 Promise:建立、使用和常見場景的詳細內容。更多資訊請關注PHP中文網其他相關文章!