我有这个配置:
var myApp = angular.module('myApp', []);
myApp.factory('Data', function () {
return { message: "I'm data from a service" };
});
function FirstCtrl($scope, Data) {
$scope.data = Data;
}
function SecondCtrl($scope, Data) {
$scope.data = Data;
}
使用硬编码的 Data.message 一切正常,但是如何通过模板将值传递给 Data.message?我想避免使用额外的 http 请求。