- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 visual studio cordova、angular js 和 ionic 框架开发 html 5 移动应用程序。在那里,我需要将一些值保存到 localStorage。我关注了一些文章,但是在将值保存到本地存储时出现错误抛出。
<!doctype html>
<html ng-app="myApp">
<head> <title>Test app</title></head>
<body ng-app="myApp" ng-controller="MainCtrl">
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
<script src="angular-local-storage.js"></script>
<script src="http://code.ionicframework.com/1.0.0/js/ionic.bundle.js"></script>
<script>
var myApp = angular.module('myApp', ['ionic', 'LocalStorageModule']);
myApp.controller('MainCtrl', ['$scope', 'localStorageService', function ($scope, localStorageService) {
$scope.test = function () {
var storageType = localStorageService.getStorageType();
console.log(storageType);
localStorageService.set('test', 'val');
}
}]);
</script>
<div>
<input type="button" ng-click="test()" value="add new">
</div>
</body>
</html>
它抛出 ReferenceError: isUndefined is not defined at Object.addToLocalStorage
有什么想法吗??
最佳答案
这是一个正在处理您的应用程序的 plunker plnkr
var myApp = angular.module('myApp', ['ionic' ,'LocalStorageModule']).config(function(localStorageServiceProvider) {
localStorageServiceProvider
.setPrefix('cars')
.setStorageType('localStorage')
.setNotify(false, false);
}).controller('MainCtrl', ['$scope', 'localStorageService', function ($scope, localStorageService) {
$scope.test = function () {
var storageType = localStorageService.getStorageType();
console.log(storageType);
localStorageService.set('test', 'val');
}
}]);
关于angularjs - 引用错误 : isUndefined is not defined in angular-local-storage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30381799/
我在 Node 中有一个使用 Lodash isUndefined 的三元组:sendUser.company = _.isUndefined(user.accounts[0].name) ? nul
为什么underscore.js的isUndefined是这样定义的? _.isUndefined = function(obj) { 返回对象 === void 0; }; 为什么这行不通? typ
我正在尝试使用 YUI3 测试框架测试是否存在已声明、已定义的函数。在 Safari 和 FireFox 中,尝试使用 isNotUndefined、isUndefined 或 isFunction
在我的 AngularJs 应用程序中,我尝试使用 localStorage 服务,我引用了“angular-local-storage.js”并将服务注入(inject)到模块中 var app =
在 Chrome 中,我从这行代码 console.log(_.isUndefined(targetNode)); 得到“Uncaught ReferenceError: targetNode is
我试过了: if(angular.isUndefined(value)){ // something } 和 if(!(value)){ // something } 两者有区别吗?
关闭。这个问题是opinion-based .它目前不接受答案。 想改进这个问题?更新问题,以便 editing this post 可以用事实和引用来回答它. 8年前关闭。 Improve this
我正在使用 visual studio cordova、angular js 和 ionic 框架开发 html 5 移动应用程序。在那里,我需要将一些值保存到 localStorage。我关注了一些
为什么 JavaScript 中有 isNaN() 函数,而 isUndefine() 必须写成: typeof(...) != "undefined" 有什么地方我没看出来吗? 在我看来,写这个
我刚刚复习 AngularJS,我遇到了 angular.isDefined 和 angular.isUndefined,你为什么要使用它们?为什么不做 if (!obj) or if (obj ==
我有时会遇到 JavaScript 库/框架功能,我会问自己:如果已经有一个简单的跨浏览器解决方案,为什么我们还需要这个? Y.Lang.isNull(bla) 和 bla === null 看起来和
我想知道为什么 YUI 库使用 Y.Lang.isUndefined() 即使 JS 具有检查变量类型的内置功能。 最佳答案 method 存在的原因是为了 API 的一致性——YUI 团队认为将其排
我刚开始尝试从 angular 1 迁移到 2,实际上是从 ionic 1 迁移到 2,我的第一个编译错误是 angular.isUndefined 和 angular.equals 没有解析。 我应
有没有人知道 jQuery 插件有像 YAHOO.lang namespace 中那样的“助手”或扩展? ? 我想到的函数如下: isNull isDefined isString isFunctio
我是一名优秀的程序员,十分优秀!