Questions tagged «angularjs-module»

15
angular-route和angular-ui-router有什么区别?
我打算在大型应用程序中使用AngularJS。因此,我正在寻找合适的模块来使用。 是什么区别(角route.js)ngRoute和UI的路由器(角-UI-router.js)模块? 在许多使用ngRoute的文章中,route是使用$ routeProvider配置的。但是,当与ui-router一起使用时,route是使用$ stateProvider和$ urlRouterProvider配置的。 我应该使用哪个模块以获得更好的可管理性和可扩展性?

6
AngularJS中是否可以使用其他常量定义常量?
我正在尝试用其他常量定义常量,但是似乎无法完成,因为当所需常量依赖于它时,初始常量尚未准备就绪。我想确定这是否完全不可能。 目前,我有这样的常量: angular.module('mainApp.config', []) .constant('RESOURCE_USERS_DOMAIN', 'http://127.0.0.1:8008') .constant('RESOURCE_USERS_API', 'http://127.0.0.1:8008/users') // Specific routes for API .constant('API_BASIC_INFORMATION', RESOURCE_USERS_API + '/api/info') .constant('API_SOCIAL_NETWORKS', RESOURCE_USERS_API + '/api/social') ; 后两个常数是我想要完成的。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.