我发现 ng-class="{yourclass:true,outerclass:false}" 竟然不起作用...囧....幸好有Google ....1 First2 Second3 Third4 Fourth控制器1 angular.module('app', [])2...
分类:
其他好文 时间:
2014-10-16 16:42:52
阅读次数:
235
两个步骤解决:iframe的src属性用ng-src属性替代,并指明绑定对象:ng-src="{{targetUrl}}"在controller里,调用$sce:$scope.targetUrl = $sce.trustAsResourceUrl(url);
分类:
Web程序 时间:
2014-10-16 04:59:41
阅读次数:
256
需要服务器启用对CORS的支持。类似问题描述:Angularjs Error in loading external jsonfile from server启用CORS的详细指南:I want to add CORS support to my server
分类:
Web程序 时间:
2014-10-16 03:53:31
阅读次数:
198
日曆插件 聯係人插件我用聯係人插件, 1 function onSuccess(contact) { 2 alert("Save Success"); 3 }; 4 5 function onError(contactError) { 6 alert("Error = " + co...
分类:
其他好文 时间:
2014-10-13 18:44:22
阅读次数:
261
angular中通過service factory 等服務來對不同的控制器進行數據交互 ,ionic 也一樣... 1 var app = angular.module('ionicApp', ['ionic']) 2 3 app.service('TodosService', function(....
分类:
其他好文 时间:
2014-10-13 14:02:59
阅读次数:
258
1 angular.module('locals',[]) 2 .factory('ls', ['$window', function($window) { 3 return { 4 set: function(key, value) { 5 $window.localSt...
分类:
其他好文 时间:
2014-10-13 13:29:29
阅读次数:
205
最近有移动App项目,选择了 Hybrid 的框架Cordova 和 App Framework 框架开发。 本来应该从配置循序渐进开始写的,但由于上班时间太忙,这段时间抽不出空来,只能根据心情和兴趣,想到哪写到哪,前面的部分以后慢慢补上。 App Framework 前生是是叫jqMobi...
分类:
移动开发 时间:
2014-10-12 02:13:17
阅读次数:
246
幾乎每個APP都會有地圖 所以在這裏記錄一下1.在index.html 中1 2 3 4 5 2. CSS1 map {2 display: block;3 width: 100%;4 height: 100%;5 }6 .scroll {7 hei...
分类:
其他好文 时间:
2014-10-11 18:54:45
阅读次数:
198
有些項目都用到了下拉更新頁面的效果;1. 在index.html 中添加ion-refresher 指令 且在我們需要更新內容的外面 添加 如 {{list.name}} 指令中 pulling-text 屬性就是我們在下拉時顯示的文字, on-r...
分类:
其他好文 时间:
2014-10-11 14:29:15
阅读次数:
202
一般情況下:iOS在config.xml中設置1 Android 在AndroidManifest.xml 中添加1 上面的二個都是讓鍵盤彈出時,键盘将会覆盖到页面上方而不会挤压页面内容;在ionic 中 有一個方法是 鍵盤彈出時,隱藏可能被擠壓到的div ;class="hide-on-keybo...
分类:
其他好文 时间:
2014-10-10 17:35:04
阅读次数:
262