簡體   English   中英

用於Ionic框架的Angular $ cookieStore

[英]Angular $cookieStore for Ionic framework

我使用ionic框架創建了一個添加到購物車的應用程序。 我正在嘗試在控制器中使用角度ngCookies

當我以這種方式在控制器中添加ngCookies時,我的應用程序無法加載

angular.module('starter.controllers', ['ngCookies'])

但是當我不以這種方式包含ngCookies時,我的應用程序可以工作

 angular.module('starter.controllers', [])

而且我還在ionic index.html頁面中包含了<script src="js/angular-cookies.js"></script>

我不知道我是否在任何地方錯過任何東西

我想您有該應用程序的主要模塊。 像這樣:

angular.module('starter', ['ionic', 'starter.controllers'])

嘗試在此處注入參考:

angular.module('starter', ['ionic', 'ngCookies', 'starter.controllers'])

並保持您的控制器模塊之前的狀態:

angular.module('starter.controllers', [])

始終檢查Chrome(控制台)中的錯誤消息類型。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM