技术类

Angular起始设置 config,run

2017-08-07  本文已影响71人  李霖弢

ng启动顺序

app.config(['$compileProvider', '$httpProvider', '$locationProvider',
    function ($compileProvider, $httpProvider, $locationProvider) {
        $compileProvider.debugInfoEnabled(true);//是否开启调试器
        $compileProvider.imgSrcSanitizationWhitelist(/^\s*(https?|weixin|wxlocalresource|data):/);//白名单
        $httpProvider.interceptors.push('authInterceptor');//http拦截器,为请求添加全局功能
        $locationProvider.html5Mode(false).hashPrefix('!');//配置$location
    }
])

上一篇下一篇

猜你喜欢

热点阅读