2
我有一個.constant()
定義,作爲訪問服務的基本URL。然後我有幾個常量與相對的URL路徑,我想在基礎網址上添加它們以使它們成爲絕對路徑。可以在AngularJS中使用value()或constant()嗎?
是否可以從另一個常量或值中訪問.constant()
或.value()
?
angular.module('App')
.constant('baseurl', 'http://www.example.com')
.constant('posturl', baseurl + '/posts')
如果想要有很多常量,常量也可以是對象。使它更容易注入一件事而不是衆多的個人 – charlietfl