0
我在我的angularjs v1服務中聲明瞭這個常量webroot
。在角度服務中聲明的常量內使用變量
angular.module('myApp.services', [])
.value('version', '0.1')
.constant('configuration',
{
webroot: 'http://127.0.0.1:10840'
}
])
我有用於通過使用webroot
端口號的變量port
。我想用port
以下面的方式聲明常量webroot
;
let port = 10840;
angular.module('myApp.services', [])
.value('version', '0.1')
.constant('configuration',
{
webroot: 'http://127.0.0.1:' + port
}
])
這是怎麼做到的角度v1?
http://stackoverflow.com/a/38366461/6449750 –