やりたいこと
store.jsを使って、localStorageを使った機能を実装したいのですが、var store = require('store');
とするとUncaught ReferenceError: require is not defined
エラーになってしまいます。
node.js
は使わずにrequire
をつかってstore.jsを読み込むことは可能でしょうか?
サンプルコード
ファイル構成 - index.html - index.js - store.js/
index.html
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <script src="./index.js" charset="utf-8"> </script> </head> <body> </body> </html>
index.js
var store = require('store'); store.set('user', 'user');
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2017/10/18 02:38