在下面的代码中,如何使用 $http 请求的结果填充模板?例如,我想使用以下结果:
function LoginCtrl($scope, $http) {
$scope.login = function () {
$http.post("login", {password: $scope.password, username: $scope.username}).
success(function (data, status, headers, config) {
// data is result with html format
console.log("successfully logged to login")
});
};
}
在下面的模板属性中
angular.module(......).config(function ($routeProvider) {
$routeProvider.
when('/', {controller: LoginCtrl, template: ?? {
}