] इस लेख में, हम IndexedDB पर चर्चा करते हैं। आपको इस लोकलस्टोरेज एपीआई से परिचित होना चाहिए, आमतौर पर ब्राउज़र में जानकारी संग्रहीत करने के लिए उपयोग किया जाता है। इसी तरह, IndexEDDB का उपयोग क्लाइंट साइड स्टोरेज के लिए किया जाता है।
IndexEDDB फाइलों/बूँदों सहित संरचित डेटा की महत्वपूर्ण मात्रा के क्लाइंट-साइड स्टोरेज के लिए एक निम्न-स्तरीय एपीआई है। यह एपीआई इस डेटा की उच्च-प्रदर्शन खोजों को सक्षम करने के लिए इंडेक्स का उपयोग करता है। जबकि वेब स्टोरेज छोटी मात्रा में डेटा संग्रहीत करने के लिए उपयोगी है, यह बड़ी मात्रा में संरचित डेटा के संग्रहीत करने के लिए कम उपयोगी है।
IndexedDB एक समाधान प्रदान करता है। यह MDN के IndexEDDB कवरेज के लिए मुख्य लैंडिंग पृष्ठ है - यहां हम पूर्ण एपीआई संदर्भ और उपयोग गाइड, ब्राउज़र समर्थन विवरण, और प्रमुख अवधारणाओं के कुछ स्पष्टीकरण के लिंक प्रदान करते हैं।
उदाहरण रिपॉजिटरी:
डेटाबेस के लिए एक अनुरोध खोलें:
window.onload = () => { }
// Let us open our database const DBOpenRequest = window.indexedDB.open('toDoList', 4);
// Register two event handlers to act on the database being opened successfully, or not DBOpenRequest.onerror = (event) => { note.appendChild(createListItem('Error loading database.')); };डेटा जोड़ें
DBOpenRequest.onsuccess = (event) => { note.appendChild(createListItem('Database initialised.')); // Store the result of opening the database in the db variable. This is used a lot below db = DBOpenRequest.result; // Run the displayData() function to populate the task list with all the to-do list data already in the IndexedDB displayData(); };]
{स्थिति}
नाम: setName (ev.target.value)} /> आयु: setage (संख्या (ev.target.value))}} /> जोड़ें बटन> > ); }// Open a read/write DB transaction, ready for adding the data const transaction = db.transaction(['toDoList'], 'readwrite'); // Call an object store that's already been added to the database const objectStore = transaction.objectStore('toDoList'); // Make a request to add our newItem object to the object store const objectStoreRequest = objectStore.add(newItem[0]); objectStoreRequest.onsuccess = (event) => { // process data on success. } // Report on the success of the transaction completing, when everything is done transaction.oncomplete = () => { note.appendChild(createListItem('Transaction completed: database modification finished.')); // Update the display of data to show the newly added item, by running displayData() again. displayData(); }; // Handler for any unexpected error transaction.onerror = () => { note.appendChild(createListItem(`Transaction not opened due to error: ${transaction.error}`)); };
अपनी परियोजना पर चर्चा करने के लिए हमारे साथ एक बैठक बुक करें।
export function AddFriendForm({ defaultAge } = { defaultAge: 21 }) { const [name, setName] = useState(''); const [age, setAge] = useState(defaultAge); const [status, setStatus] = useState(''); async function addFriend() { try { // Add the new friend! const id = await db.friends.add({ name, age }); setStatus(`Friend ${name} successfully added. Got id ${id}`); setName(''); setAge(defaultAge); } catch (error) { setStatus(`Failed to add ${name}: ${error}`); } } return ({status}
Name: setName(ev.target.value)} /> Age: setAge(Number(ev.target.value))} /> > ); }
संदर्भ:
अस्वीकरण: उपलब्ध कराए गए सभी संसाधन आंशिक रूप से इंटरनेट से हैं। यदि आपके कॉपीराइट या अन्य अधिकारों और हितों का कोई उल्लंघन होता है, तो कृपया विस्तृत कारण बताएं और कॉपीराइट या अधिकारों और हितों का प्रमाण प्रदान करें और फिर इसे ईमेल पर भेजें: [email protected] हम इसे आपके लिए यथाशीघ्र संभालेंगे।
Copyright© 2022 湘ICP备2022001581号-3