{"id":43388,"date":"2024-11-27T03:22:51","date_gmt":"2024-11-27T03:22:51","guid":{"rendered":"https:\/\/atmokpo.com\/w\/?p=43388"},"modified":"2024-11-27T03:22:51","modified_gmt":"2024-11-27T03:22:51","slug":"%ec%95%84%ed%8c%8c%ec%b9%98-%ec%bd%94%eb%a5%b4%eb%8f%84%eb%b0%94-apache-cordova-%ea%b0%9c%eb%b0%9c-%eb%8d%b0%ec%9d%b4%ed%84%b0-%ec%a0%80%ec%9e%a5%ec%86%8c-%ec%82%ac%ec%9a%a9%eb%b2%95","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/43388\/","title":{"rendered":"[\uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14]  Apache Cordova \uac1c\ubc1c &#8211; \ub370\uc774\ud130 \uc800\uc7a5\uc18c \uc0ac\uc6a9\ubc95"},"content":{"rendered":"<p><body><\/p>\n<p>\ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc744 \ud560 \ub54c, \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud558\ub294 \uac83\uc740 \ud544\uc218\uc801\uc778 \uc694\uc18c\uc785\ub2c8\ub2e4. Apache Cordova\ub294 \uc6f9 \uae30\uc220\uc744 \uc774\uc6a9\ud558\uc5ec \ud06c\ub85c\uc2a4 \ud50c\ub7ab\ud3fc \ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \uc218 \uc788\ub294 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ub370\uc774\ud130 \uc800\uc7a5\uc744 \uc704\ud574 \ub2e4\uc591\ud55c \ubc29\ubc95\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 \ub85c\uceec \uc2a4\ud1a0\ub9ac\uc9c0(Local Storage)\uc640 IndexedDB\ub97c \uc0ac\uc6a9\ud558\uc5ec \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud558\uace0 \uad00\ub9ac\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574\uc11c \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<h2>1. \ub85c\uceec \uc2a4\ud1a0\ub9ac\uc9c0 (Local Storage)<\/h2>\n<p>\ub85c\uceec \uc2a4\ud1a0\ub9ac\uc9c0\ub294 \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc774 \ud074\ub77c\uc774\uc5b8\ud2b8 \uce21\uc5d0\uc11c \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud560 \uc218 \uc788\ub3c4\ub85d \uc81c\uacf5\ud558\ub294 \uac04\ub2e8\ud55c Key-Value \uc800\uc7a5\uc18c\uc785\ub2c8\ub2e4. Apache Cordova\ub294 \ud45c\uc900 \uc6f9 API\ub97c \uc0ac\uc6a9\ud558\uae30 \ub54c\ubb38\uc5d0, \ub85c\uceec \uc2a4\ud1a0\ub9ac\uc9c0\uc5d0 \uc811\uadfc\ud558\uae30 \ub9e4\uc6b0 \uc27d\uace0 \uc9c1\uad00\uc801\uc785\ub2c8\ub2e4.<\/p>\n<h3>1.1 \ub85c\uceec \uc2a4\ud1a0\ub9ac\uc9c0\uc758 \uae30\ubcf8 \uc0ac\uc6a9\ubc95<\/h3>\n<p>\ub85c\uceec \uc2a4\ud1a0\ub9ac\uc9c0\ub97c \uc0ac\uc6a9\ud558\uae30 \uc704\ud574\uc11c\ub294 <code>localStorage<\/code> \uac1d\uccb4\ub97c \uc0ac\uc6a9\ud569\ub2c8\ub2e4. \uc774 \uac1d\uccb4\ub294 \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud558\uace0, \ubd88\ub7ec\uc624\uace0, \uc0ad\uc81c\ud558\ub294 \uba54\uc18c\ub4dc\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4.<\/p>\n<h4>\ub370\uc774\ud130 \uc800\uc7a5<\/h4>\n<pre>\n<code>\nlocalStorage.setItem('username', 'john_doe');\nlocalStorage.setItem('email', 'john@example.com');\n<\/code>\n    <\/pre>\n<h4>\ub370\uc774\ud130 \ubd88\ub7ec\uc624\uae30<\/h4>\n<pre>\n<code>\nconst username = localStorage.getItem('username');\nconst email = localStorage.getItem('email');\nconsole.log(username);  \/\/ \"john_doe\"\nconsole.log(email);     \/\/ \"john@example.com\"\n<\/code>\n    <\/pre>\n<h4>\ub370\uc774\ud130 \uc0ad\uc81c<\/h4>\n<pre>\n<code>\nlocalStorage.removeItem('username');\nlocalStorage.clear(); \/\/ \ubaa8\ub4e0 \ub370\uc774\ud130 \uc0ad\uc81c\n<\/code>\n    <\/pre>\n<h3>1.2 \ub85c\uceec \uc2a4\ud1a0\ub9ac\uc9c0\uc758 \ud2b9\uc9d5<\/h3>\n<ul>\n<li>\uc800\uc7a5 \uc6a9\ub7c9: \uc57d 5MB (\ube0c\ub77c\uc6b0\uc800\uc5d0 \ub530\ub77c \ub2e4\ub97c \uc218 \uc788\uc74c)<\/li>\n<li>\ub370\uc774\ud130\ub294 \ubb38\uc790\uc5f4 \ud615\ud0dc\ub85c \uc800\uc7a5\ub428<\/li>\n<li>\ub3d9\uae30\uc2dd \uc811\uadfc: \ub370\uc774\ud130\ub97c \uc694\uccad\ud558\uba74 \uc989\uc2dc \ubc18\ud658\ub428<\/li>\n<li>\ube0c\ub77c\uc6b0\uc800 \uc138\uc158\uc774 \ub05d\ub09c \ud6c4\uc5d0\ub3c4 \ub370\uc774\ud130\uac00 \uc720\uc9c0\ub428<\/li>\n<\/ul>\n<h3>1.3 \ub85c\uceec \uc2a4\ud1a0\ub9ac\uc9c0\uc758 \uc0ac\uc6a9 \uc608\uc81c<\/h3>\n<p>\uc0ac\uc6a9\uc790 \uc124\uc815\uc744 \ub85c\uceec \uc2a4\ud1a0\ub9ac\uc9c0\uc5d0 \uc800\uc7a5\ud558\uace0 \ubd88\ub7ec\uc624\ub294 \uac04\ub2e8\ud55c \uc608\uc81c\ub97c \ub9cc\ub4e4\uc5b4 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<pre>\n<code>\nfunction saveUserSettings() {\n    const theme = document.querySelector('input[name=\"theme\"]:checked').value;\n    const language = document.querySelector('input[name=\"language\"]:checked').value;\n    localStorage.setItem('theme', theme);\n    localStorage.setItem('language', language);\n}\n\nfunction loadUserSettings() {\n    const theme = localStorage.getItem('theme') || 'light';\n    const language = localStorage.getItem('language') || 'en';\n    document.querySelector(`input[name=\"theme\"][value=\"${theme}\"]`).checked = true;\n    document.querySelector(`input[name=\"language\"][value=\"${language}\"]`).checked = true;\n}\n\ndocument.addEventListener('DOMContentLoaded', loadUserSettings);\n<\/code>\n    <\/pre>\n<h2>2. IndexedDB<\/h2>\n<p>IndexedDB\ub294 \ub300\ub7c9\uc758 \uad6c\uc870\ud654\ub41c \ub370\uc774\ud130\ub97c \ud074\ub77c\uc774\uc5b8\ud2b8 \uce21\uc5d0\uc11c \uc800\uc7a5\ud558\uae30 \uc704\ud574 \ub9cc\ub4e4\uc5b4\uc9c4 \ube44\ub3d9\uae30\uc2dd \ub370\uc774\ud130\ubca0\uc774\uc2a4\uc785\ub2c8\ub2e4. \ub85c\uceec \uc2a4\ud1a0\ub9ac\uc9c0\ubcf4\ub2e4 \ub354 \ub9ce\uc740 \uc591\uc758 \ub370\uc774\ud130 \ucc98\ub9ac\uc640 \ubcf5\uc7a1\ud55c \ub370\uc774\ud130 \uad6c\uc870\ub97c \uc9c0\uc6d0\ud569\ub2c8\ub2e4.<\/p>\n<h3>2.1 IndexedDB\uc758 \ud2b9\uc9d5<\/h3>\n<ul>\n<li>\uc774\uc9c4 \ub370\uc774\ud130 \uc800\uc7a5 \uac00\ub2a5: \ud14d\uc2a4\ud2b8 \ubfd0\ub9cc \uc544\ub2c8\ub77c \uc0ac\uc9c4, \uc624\ub514\uc624, \ube44\ub514\uc624 \ub610\ub294 Blob \ud615\ud0dc\uc758 \ub370\uc774\ud130\ub3c4 \uc800\uc7a5\ud560 \uc218 \uc788\uc74c<\/li>\n<li>\ub300\ub7c9\uc758 \ub370\uc774\ud130: \uc218\uc2ed MB\uc5d0\uc11c \uc218 GB\uae4c\uc9c0 \ub370\uc774\ud130\ub97c \uc800\uc7a5 \uac00\ub2a5<\/li>\n<li>\ube44\uad00\uacc4\ud615 \ub370\uc774\ud130\ubca0\uc774\uc2a4: \uac1d\uccb4 \uc800\uc7a5\uc18c(Object Store)\ub77c\ub294 \uac1c\ub150\uc744 \uc0ac\uc6a9\ud558\uc5ec \ub370\uc774\ud130\ub97c \uc800\uc7a5<\/li>\n<li>\ube44\ub3d9\uae30 API: \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud558\uac70\ub098 \uc77d\uc744 \ub54c \ube44\ub3d9\uae30\uc801\uc73c\ub85c \ub3d9\uc791\ud558\ubbc0\ub85c UI\uac00 \uba48\ucd94\uc9c0 \uc54a\uc74c<\/li>\n<\/ul>\n<h3>2.2 IndexedDB\uc758 \uae30\ubcf8 \uc0ac\uc6a9\ubc95<\/h3>\n<p>IndexedDB\ub97c \uc0ac\uc6a9\ud558\uae30 \uc704\ud574\uc11c\ub294 \uba3c\uc800 \ub370\uc774\ud130\ubca0\uc774\uc2a4\ub97c \uc0dd\uc131\ud558\uace0, \uac1d\uccb4 \uc800\uc7a5\uc18c\ub97c \ub9cc\ub4e4\uc5b4\uc57c \ud569\ub2c8\ub2e4.<\/p>\n<h4>\ub370\uc774\ud130\ubca0\uc774\uc2a4 \uc5f4\uae30<\/h4>\n<pre>\n<code>\nconst request = indexedDB.open('myDatabase', 1);\n\nrequest.onerror = function(event) {\n    console.error('Database error:', event.target.error);\n};\n\nrequest.onsuccess = function(event) {\n    const db = event.target.result;\n    console.log('Database opened successfully');\n};\n\nrequest.onupgradeneeded = function(event) {\n    const db = event.target.result;\n    const objectStore = db.createObjectStore('users', { keyPath: 'id' });\n    objectStore.createIndex('name', 'name', { unique: false });\n    console.log('Object store created');\n};\n<\/code>\n    <\/pre>\n<h4>\ub370\uc774\ud130 \uc800\uc7a5<\/h4>\n<pre>\n<code>\nfunction addUser(id, name, email) {\n    const transaction = db.transaction(['users'], 'readwrite');\n    const objectStore = transaction.objectStore('users');\n    const user = { id: id, name: name, email: email };\n    const request = objectStore.add(user);\n\n    request.onsuccess = function() {\n        console.log('User added to the database');\n    };\n\n    request.onerror = function(event) {\n        console.error('Error adding user:', event.target.error);\n    };\n}\n<\/code>\n    <\/pre>\n<h4>\ub370\uc774\ud130 \uc870\ud68c<\/h4>\n<pre>\n<code>\nfunction getUser(id) {\n    const transaction = db.transaction(['users']);\n    const objectStore = transaction.objectStore('users');\n    const request = objectStore.get(id);\n    \n    request.onsuccess = function(event) {\n        const user = event.target.result;\n        if (user) {\n            console.log('User found:', user);\n        } else {\n            console.log('User not found');\n        }\n    };\n    \n    request.onerror = function(event) {\n        console.error('Error getting user:', event.target.error);\n    };\n}\n<\/code>\n    <\/pre>\n<h3>2.3 IndexedDB\uc758 \uc0ac\uc6a9 \uc608\uc81c<\/h3>\n<p>\uc0ac\uc6a9\uc790 \uc815\ubcf4\ub97c \uc800\uc7a5\ud558\uace0 \ubd88\ub7ec\uc624\ub294 \uac04\ub2e8\ud55c \uc608\uc81c\ub97c \ub9cc\ub4e4\uc5b4 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<pre>\n<code>\nlet db;\n\nconst request = indexedDB.open('UserDB', 1);\n\nrequest.onupgradeneeded = function(event) {\n    db = event.target.result;\n    const objectStore = db.createObjectStore('users', { keyPath: 'id' });\n    objectStore.createIndex('name', 'name', { unique: false });\n};\n\nrequest.onsuccess = function(event) {\n    db = event.target.result;\n\n    \/\/ \uc0ac\uc6a9\uc790 \ucd94\uac00\n    addUser(1, 'John Doe', 'john@example.com');\n    addUser(2, 'Jane Doe', 'jane@example.com');\n\n    \/\/ \uc0ac\uc6a9\uc790 \uc870\ud68c\n    getUser(1);\n};\n\n\/\/ \uc0ac\uc6a9\uc790 \ucd94\uac00 \ubc0f \uc870\ud68c \ud568\uc218\ub294 \uc704 \uc608\uc81c\ub97c \ucc38\uc870\ud558\uc5ec \uc791\uc131\n<\/code>\n    <\/pre>\n<h2>\uacb0\ub860<\/h2>\n<p>Apache Cordova\ub97c \uc0ac\uc6a9\ud55c \ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc5d0\uc11c\ub294 \ub85c\uceec \uc2a4\ud1a0\ub9ac\uc9c0\uc640 IndexedDB\uc640 \uac19\uc740 \ub2e4\uc591\ud55c \uc800\uc7a5\uc18c \uae30\uc220\uc744 \ud65c\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ub85c\uceec \uc2a4\ud1a0\ub9ac\uc9c0\ub294 \uac04\ub2e8\ud55c Key-Value \uc800\uc7a5\uc18c\ub85c \uc801\ud569\ud558\uc9c0\ub9cc, \ub300\ub7c9\uc758 \ub370\uc774\ud130\ub97c \ucc98\ub9ac\ud574\uc57c \ud560 \uacbd\uc6b0 IndexedDB\ub97c \uc0ac\uc6a9\ud558\ub294 \uac83\uc774 \uc88b\uc2b5\ub2c8\ub2e4. \uac01\uac01\uc758 \ud2b9\uc9d5\uacfc \uc0ac\uc6a9\ubc95\uc744 \uc219\uc9c0\ud558\uc5ec \ud544\uc694\uc5d0 \ub9de\ub294 \uc800\uc7a5\uc18c\ub97c \uc120\ud0dd\ud558\ub294 \uac83\uc774 \uc911\uc694\ud569\ub2c8\ub2e4.<\/p>\n<p>\uc774\ubc88 \ube14\ub85c\uadf8 \uae00\uc774 Apache Cordova\uc5d0\uc11c \ub370\uc774\ud130 \uc800\uc7a5\uc18c\ub97c \uc774\ud574\ud558\uace0 \ud65c\uc6a9\ud558\ub294 \ub370 \ub3c4\uc6c0\uc774 \ub418\uc5c8\uc73c\uba74 \ud569\ub2c8\ub2e4. \ub2e4\uc591\ud55c \uc608\uc81c\uc640 \uc0ac\uc6a9\ubc95\uc744 \ud1b5\ud574 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c \uc18d\ub3c4\ub97c \ub192\uc774\uace0, \uc0ac\uc6a9\uc790 \uacbd\ud5d8\uc744 \ud5a5\uc0c1\uc2dc\ud0a4\ub294 \ub370 \uae30\uc5ec\ud560 \uc218 \uc788\uae30\ub97c \ubc14\ub78d\ub2c8\ub2e4.<\/p>\n<h2>\ucc38\uace0 \uc790\ub8cc<\/h2>\n<ul>\n<li><a href=\"https:\/\/developer.mozilla.org\/ko\/docs\/Web\/API\/Window\/localStorage\">MDN Web Docs &#8211; localStorage<\/a><\/li>\n<li><a href=\"https:\/\/developer.mozilla.org\/ko\/docs\/Web\/API\/IndexedDB_API\">MDN Web Docs &#8211; IndexedDB<\/a><\/li>\n<li><a href=\"https:\/\/cordova.apache.org\/\">Apache Cordova \uacf5\uc2dd \ubb38\uc11c<\/a><\/li>\n<\/ul>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc744 \ud560 \ub54c, \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud558\ub294 \uac83\uc740 \ud544\uc218\uc801\uc778 \uc694\uc18c\uc785\ub2c8\ub2e4. Apache Cordova\ub294 \uc6f9 \uae30\uc220\uc744 \uc774\uc6a9\ud558\uc5ec \ud06c\ub85c\uc2a4 \ud50c\ub7ab\ud3fc \ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \uc218 \uc788\ub294 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ub370\uc774\ud130 \uc800\uc7a5\uc744 \uc704\ud574 \ub2e4\uc591\ud55c \ubc29\ubc95\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 \ub85c\uceec \uc2a4\ud1a0\ub9ac\uc9c0(Local Storage)\uc640 IndexedDB\ub97c \uc0ac\uc6a9\ud558\uc5ec \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud558\uace0 \uad00\ub9ac\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574\uc11c \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. \ub85c\uceec \uc2a4\ud1a0\ub9ac\uc9c0 (Local Storage) \ub85c\uceec \uc2a4\ud1a0\ub9ac\uc9c0\ub294 \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc774 \ud074\ub77c\uc774\uc5b8\ud2b8 \uce21\uc5d0\uc11c \ub370\uc774\ud130\ub97c &hellip; <a href=\"https:\/\/atmokpo.com\/w\/43388\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;[\uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14]  Apache Cordova \uac1c\ubc1c &#8211; \ub370\uc774\ud130 \uc800\uc7a5\uc18c \uc0ac\uc6a9\ubc95&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[251],"tags":[],"class_list":["post-43388","post","type-post","status-publish","format-standard","hentry","category-cordova"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[\uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14] Apache Cordova \uac1c\ubc1c - \ub370\uc774\ud130 \uc800\uc7a5\uc18c \uc0ac\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/43388\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[\uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14] Apache Cordova \uac1c\ubc1c - \ub370\uc774\ud130 \uc800\uc7a5\uc18c \uc0ac\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc744 \ud560 \ub54c, \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud558\ub294 \uac83\uc740 \ud544\uc218\uc801\uc778 \uc694\uc18c\uc785\ub2c8\ub2e4. Apache Cordova\ub294 \uc6f9 \uae30\uc220\uc744 \uc774\uc6a9\ud558\uc5ec \ud06c\ub85c\uc2a4 \ud50c\ub7ab\ud3fc \ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \uc218 \uc788\ub294 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ub370\uc774\ud130 \uc800\uc7a5\uc744 \uc704\ud574 \ub2e4\uc591\ud55c \ubc29\ubc95\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 \ub85c\uceec \uc2a4\ud1a0\ub9ac\uc9c0(Local Storage)\uc640 IndexedDB\ub97c \uc0ac\uc6a9\ud558\uc5ec \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud558\uace0 \uad00\ub9ac\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574\uc11c \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. \ub85c\uceec \uc2a4\ud1a0\ub9ac\uc9c0 (Local Storage) \ub85c\uceec \uc2a4\ud1a0\ub9ac\uc9c0\ub294 \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc774 \ud074\ub77c\uc774\uc5b8\ud2b8 \uce21\uc5d0\uc11c \ub370\uc774\ud130\ub97c &hellip; \ub354 \ubcf4\uae30 &quot;[\uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14] Apache Cordova \uac1c\ubc1c &#8211; \ub370\uc774\ud130 \uc800\uc7a5\uc18c \uc0ac\uc6a9\ubc95&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/43388\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-27T03:22:51+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"2\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/43388\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/43388\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"[\uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14] Apache Cordova \uac1c\ubc1c &#8211; \ub370\uc774\ud130 \uc800\uc7a5\uc18c \uc0ac\uc6a9\ubc95\",\"datePublished\":\"2024-11-27T03:22:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/43388\/\"},\"wordCount\":47,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"cordova\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/43388\/\",\"url\":\"https:\/\/atmokpo.com\/w\/43388\/\",\"name\":\"[\uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14] Apache Cordova \uac1c\ubc1c - \ub370\uc774\ud130 \uc800\uc7a5\uc18c \uc0ac\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-27T03:22:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/43388\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/43388\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/43388\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[\uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14] Apache Cordova \uac1c\ubc1c &#8211; \ub370\uc774\ud130 \uc800\uc7a5\uc18c \uc0ac\uc6a9\ubc95\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[\uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14] Apache Cordova \uac1c\ubc1c - \ub370\uc774\ud130 \uc800\uc7a5\uc18c \uc0ac\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/atmokpo.com\/w\/43388\/","og_locale":"ko_KR","og_type":"article","og_title":"[\uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14] Apache Cordova \uac1c\ubc1c - \ub370\uc774\ud130 \uc800\uc7a5\uc18c \uc0ac\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc744 \ud560 \ub54c, \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud558\ub294 \uac83\uc740 \ud544\uc218\uc801\uc778 \uc694\uc18c\uc785\ub2c8\ub2e4. Apache Cordova\ub294 \uc6f9 \uae30\uc220\uc744 \uc774\uc6a9\ud558\uc5ec \ud06c\ub85c\uc2a4 \ud50c\ub7ab\ud3fc \ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \uc218 \uc788\ub294 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ub370\uc774\ud130 \uc800\uc7a5\uc744 \uc704\ud574 \ub2e4\uc591\ud55c \ubc29\ubc95\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 \ub85c\uceec \uc2a4\ud1a0\ub9ac\uc9c0(Local Storage)\uc640 IndexedDB\ub97c \uc0ac\uc6a9\ud558\uc5ec \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud558\uace0 \uad00\ub9ac\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574\uc11c \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. \ub85c\uceec \uc2a4\ud1a0\ub9ac\uc9c0 (Local Storage) \ub85c\uceec \uc2a4\ud1a0\ub9ac\uc9c0\ub294 \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc774 \ud074\ub77c\uc774\uc5b8\ud2b8 \uce21\uc5d0\uc11c \ub370\uc774\ud130\ub97c &hellip; \ub354 \ubcf4\uae30 \"[\uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14] Apache Cordova \uac1c\ubc1c &#8211; \ub370\uc774\ud130 \uc800\uc7a5\uc18c \uc0ac\uc6a9\ubc95\"","og_url":"https:\/\/atmokpo.com\/w\/43388\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-27T03:22:51+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"2\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/43388\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/43388\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"[\uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14] Apache Cordova \uac1c\ubc1c &#8211; \ub370\uc774\ud130 \uc800\uc7a5\uc18c \uc0ac\uc6a9\ubc95","datePublished":"2024-11-27T03:22:51+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/43388\/"},"wordCount":47,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["cordova"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/43388\/","url":"https:\/\/atmokpo.com\/w\/43388\/","name":"[\uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14] Apache Cordova \uac1c\ubc1c - \ub370\uc774\ud130 \uc800\uc7a5\uc18c \uc0ac\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-27T03:22:51+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/43388\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/43388\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/43388\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"[\uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14] Apache Cordova \uac1c\ubc1c &#8211; \ub370\uc774\ud130 \uc800\uc7a5\uc18c \uc0ac\uc6a9\ubc95"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/43388","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=43388"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/43388\/revisions"}],"predecessor-version":[{"id":43389,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/43388\/revisions\/43389"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=43388"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=43388"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=43388"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}