如何将新模块插入 Onsen UI
How to insert new module into Onsen UI
我有以下使用 Onsen 的代码 UI
ons.bootstrap();
app.controller('MainController', ['$scope', 'service', '$http', '$q', function($scope, service, $http, $q) {
}]);
我想知道如何添加像 ngCookies 这样的新模块,以便我可以访问该模块中提供的任何 $injector。
你可以这样做:
var app = angular.module('app', ['onsen','ngCookies']);
无需使用ons.bootstrap();显然在你的 index.html 中 html 标签应该是这样的:
<html lang="en" ng-app="app">
我有以下使用 Onsen 的代码 UI
ons.bootstrap();
app.controller('MainController', ['$scope', 'service', '$http', '$q', function($scope, service, $http, $q) {
}]);
我想知道如何添加像 ngCookies 这样的新模块,以便我可以访问该模块中提供的任何 $injector。
你可以这样做:
var app = angular.module('app', ['onsen','ngCookies']);
无需使用ons.bootstrap();显然在你的 index.html 中 html 标签应该是这样的:
<html lang="en" ng-app="app">