使用注解之前要开启自动扫描功能 其中base-package为需要扫描的包(含子包)。@Configuration把一个类作为一个IoC容器,它的某个方法头上如果注册了@Bean,就会作为这个Spring容器中的Bean。@Scope注解 作用域@Lazy(true) 表示延迟初始化@Serv...
分类:
编程语言 时间:
2014-08-12 10:02:53
阅读次数:
251
现在我们打算用ng的$filter服务来筛选数据例如现在某后台返回给我们的数据是这样的:$scope.data = { id: "01", maxDisTkts: 0, name: "普通区", ...
分类:
Web程序 时间:
2014-08-12 03:01:13
阅读次数:
275
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
问题描述:
原先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
<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命名空间的使用:test.html代码如下: 测试命名空间 测试命名空间 test.js的源码:var a = { $scope : "xxxxxx", add:function( ) { $scope = "ttttt"; $("#htmla").html( $scope); //输出...
分类:
Web程序 时间:
2014-08-07 21:43:20
阅读次数:
242
坑1: directive要用到controller里面的东西呢,有两种办法: 通过$scope.xxx来设置的,直接用xxx引用 通过controller function 里面的 this.xxx 设置的,要通过controllerName.xxx引用 爬爬墙,更健康:附Angular...
分类:
其他好文 时间:
2014-08-07 19:25:30
阅读次数:
210
由于AngularJS是通过控制器构造函数的参数名字来推断依赖服务名称的。所以如果你要压缩控制器的JS代码,它所有的参数也同时会被压缩,这时候依赖注入系统就不能正确的识别出服务了。
假如我们的Controller的名称为:BookCtrl,压缩前的代码为:
var BookCtrl = function($scope, $http) { /* constructor body */ }...
分类:
Web程序 时间:
2014-08-07 19:04:50
阅读次数:
251
ngCordova是在Cordova
Api基础上封装的一系列开源的AngularJs服务和扩展,让开发者可以方便的在HybridApp开发中调用设备能力,即可以在AngularJs代码中访问设备能力Api。
根据我的经验,在cordova插件的sucess和error js回调方法中,是无法使用 angularjs的$scope对象和注入的方法的,只能访问全局的方法和变...
分类:
Web程序 时间:
2014-08-06 15:00:01
阅读次数:
1019
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