码迷,mamicode.com
首页 >  
搜索关键字:$scope    ( 3363个结果
Spring 常用注解
使用注解之前要开启自动扫描功能 其中base-package为需要扫描的包(含子包)。@Configuration把一个类作为一个IoC容器,它的某个方法头上如果注册了@Bean,就会作为这个Spring容器中的Bean。@Scope注解 作用域@Lazy(true) 表示延迟初始化@Serv...
分类:编程语言   时间:2014-08-12 10:02:53    阅读次数:251
关于AngularJs的$filter那点事(菜鸟上路)
现在我们打算用ng的$filter服务来筛选数据例如现在某后台返回给我们的数据是这样的:$scope.data = { id: "01", maxDisTkts: 0, name: "普通区", ...
分类:Web程序   时间:2014-08-12 03:01:13    阅读次数:275
Python 学习笔记(3)
Class:def scope_test(): def do_local(): spam = "local spam" def do_nonlocal(): nonlocal spam spam = "nonlocal spam" def ...
分类:编程语言   时间:2014-08-09 09:02:47    阅读次数:254
ORA-27102: out of memory报错的处理
问题描述: 原先SGA 4G,PGA 2G。 alter system set sga_max_size=30G scope=spfile; alter system set sga_target=30G scope=spfile; 之后, SQL> shutdown immediate Database closed. Database dismounted. ORACLE in...
分类:其他好文   时间:2014-08-08 16:13:26    阅读次数:266
AngularJS 入门级(一) HelloWorld
<html ng-app> <head> <script src="lib/angular/angular.js"></script> <script> function PhoneListCtrl($scope){ $scope.phones = [ {‘name‘:‘华为‘}, ...
分类:Web程序   时间:2014-08-08 13:05:06    阅读次数:233
js命名空间的使用
js命名空间的使用:test.html代码如下: 测试命名空间 测试命名空间 test.js的源码:var a = { $scope : "xxxxxx", add:function( ) { $scope = "ttttt"; $("#htmla").html( $scope); //输出...
分类:Web程序   时间:2014-08-07 21:43:20    阅读次数:242
满脑子都是Angular/directive/scope/git
坑1: directive要用到controller里面的东西呢,有两种办法: 通过$scope.xxx来设置的,直接用xxx引用 通过controller function 里面的 this.xxx 设置的,要通过controllerName.xxx引用 爬爬墙,更健康:附Angular...
分类:其他好文   时间:2014-08-07 19:25:30    阅读次数:210
AngularJs压缩时需要注意的事项
由于AngularJS是通过控制器构造函数的参数名字来推断依赖服务名称的。所以如果你要压缩控制器的JS代码,它所有的参数也同时会被压缩,这时候依赖注入系统就不能正确的识别出服务了。 假如我们的Controller的名称为:BookCtrl,压缩前的代码为: var BookCtrl = function($scope, $http) { /* constructor body */ }...
分类:Web程序   时间:2014-08-07 19:04:50    阅读次数:251
AngularJS Cordova插件介绍
ngCordova是在Cordova Api基础上封装的一系列开源的AngularJs服务和扩展,让开发者可以方便的在HybridApp开发中调用设备能力,即可以在AngularJs代码中访问设备能力Api。         根据我的经验,在cordova插件的sucess和error js回调方法中,是无法使用 angularjs的$scope对象和注入的方法的,只能访问全局的方法和变...
分类:Web程序   时间:2014-08-06 15:00:01    阅读次数:1019
[转]C# and the using Statement in 3 seconds and a bug in Reflector
Using() Statement in 3 seconds and a bug in Reflector The boring, known accross the board definition from the MSDN site: Defines a scope, outside of w...
分类:其他好文   时间:2014-08-06 14:39:21    阅读次数:234
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!