微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ngSea Angularjs 1.2.7 + Seajs 按需加载插件[](<a href="https://github.com/ckken/ngSea#angularjs-108--">https://github.com/ckken/ngSea#angularjs-108--</a>

程序名称:ngSea Angularjs 1.2.7 + Seajs 按需加载插件[](<a href="https://github.com/ckken/ngSea#angularjs-108--">https://github.com/ckken/ngSea#angularjs-108--</a>

授权协议: GPL

操作系统: 跨平台

开发语言: JavaScript

ngSea Angularjs 1.2.7 + Seajs 按需加载插件[](<a href="https://github.com/ckken/ngSea#angularjs-108--">https://github.com/ckken/ngSea#angularjs-108--</a> 介绍

Angularjs 1.2.7 + Seajs 按需加载插件

angular 1.2.7 支持IE8+ 如需支持IE7 需要关闭 $sceprovider

 angular.module('ie7support', []).config(function($sceprovider) {
        $sceprovider.enabled(false);
    });
    然后注入 ie7support

DEMO http://wvovo.com/ngSea/index.1.2.7.html

[](https://github.com/ckken/ngSea#angularjs-108--

seajs-%E6%8C%89%E9%9C%80%E5%8A%A0%E8%BD%BD%E6%8F%92%E4%BB%B6)Angularjs 1.0.8 +
Seajs 按需加载插件

目前测试兼容IE6+

DEMO :http://wvovo.com/ngSea/#/

有任何问题请在这里留言:https://github.com/ckken/ngSea/issues/1

  • ngSea by KenZR email [email protected]

    • Create time 2013/12/5

    • support in IE6 about with the Angular 1.0.8 (because the 1.2.3 not support in IE 7)

    • use it inject ngSea And in run use app = $ngSea(app); that’s all

    • Contact us: QQ 117692258

SeaJs配置

    seajs.use(['app'], function(app){
        angular.bootstrap(document, ['app']);
    });

加载插件后 注入ngSea

var app = angular.module('app', ['ngSea']);

路由配置方式

  when('/t1', {
      controller: 'testACtrl',
      templateUrl: './app/mod/m1/t1.html',
      'controllerUrl': 'm1/t1'
  })

Run 期间引入$ngSea 赋值

    app.run(["$rootScope", "$ngSea", function ($rootScope, $ngSea) {
        app = $ngSea(app);
    }]);

请保留app里面的 register变量 使用方式为

    module.exports = function(app){
        app.register.controller('testACtrl', ['$scope', '$routeParams', '$location', '$http',
            function($scope, $routeParams, $location, $http){
                $http.get('data/testA.json').success(function(res){
                    $scope.data=res;
                })
            }
        ]);
    }

如果选择兼容requireJs 或者不考虑IE7一下的话

可以考虑天猪的版本 :https://github.com/ckken/angular-lazyload

我的版本只支持SEAjs

ngSea Angularjs 1.2.7 + Seajs 按需加载插件[](<a href="https://github.com/ckken/ngSea#angularjs-108--">https://github.com/ckken/ngSea#angularjs-108--</a> 官网

https://github.com/ckken/ngSea

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐