- Monaca IDEでプロジェクトを立ち上げると、angular is not definedのエラーが
Chrome Dev Toolのコンソール画面に出ます。
- エラーには、 「onsen UI 2.11.0より、angularjs-onsen pakageをインストールしないとダメ。https://onsen.io/v2.... を参照して」とあったので、そこをたどったところ、「<script src="https://unpkg.com/angularjs-onsenui/dist/angularjs-onsenui.min.js"></script>と記述しろ」とあったので、それも試したのですが、エラーログが2回出されるだけでした。。。
- 解決方法のご教授をお願いできますでしょうか。
-ちなみに、プロジェクトには、 Onsen UI(Monaca Version)バージョン2.10.10を設定してます。
)2.10.10って、onsen ui のバージョンではなく onsen uiの*monaca version**だと理解してます
何卒、よろしくお願いします。
<エラーログ> index.umd.js:57 From Onsen UI 2.11.0, the AngularJS binding will no longer be part of the core package. You will need to install the new angularjs-onsenui package. See https://onsen.io/v2/guide/angular1/#migrating-to-angularjs-onsenui-package for more details. (anonymous) @ index.umd.js:57 index.umd.js:57 Uncaught ReferenceError: angular is not defined at index.umd.js:57 at index.umd.js:57 at index.umd.js:57 at index.umd.js:57 (anonymous) @ index.umd.js:57 (anonymous) @ index.umd.js:57 (anonymous) @ index.umd.js:57 (anonymous) @ index.umd.js:57
index.html
1<index.html> 2<!DOCTYPE HTML> 3<html> 4<head> 5 <meta charset="utf-8"> 6 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> 7 <meta http-equiv="Content-Security-Policy" content="default-src * data: gap: content: https://ssl.gstatic.com; style-src * 'unsafe-inline'; script-src * 'unsafe-inline' 'unsafe-eval'"> 8 <link rel="stylesheet" href="components/loader.css"> 9 <script src="components/loader.js"></script> 10 <link rel="stylesheet" href="css/style.css"> 11<!-- 12これを入れても、ダメでした。。 13<script src="https://unpkg.com/angularjs-onsenui/dist/angularjs-onsenui.min.js"></script> 14--> 15 16 17</head> 18<body> 19 <ons-navigator swipeable id="myNavigator" > 20 <ons-page> 21 <ons-list> 22 <ons-list-item tappable modifier="chevron" 23 onclick="myNavigator.pushPage('./sample1.html');"> 24 1. Simply return 25 </ons-list-item> 26 </ons-page > 27 </ons-navigator> 28</body> 29</html> 30
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/03 23:24