下面是我的 Angular 应用的样子。
(function () {
"use strict";
angular
.module("app.core", ['ngRoute']);
}());
服务
(function () {
'use strict';
angular
.module('app.service')
.factory('dataService', dataService);
dataService.$inject = ['$http', '$q'];
function dataService($http, $q) {
var service = {
create: create,
read: read,
update: update,
remove: remove
}
return service;
function read() {
return
$http.get("APIURL")
.then(success)
.catch(exception);
function success(response) {
}
function exception(ex) {
}
}
function create() {}
function update() {}
function detete() {}
}
})`
index.html
<body ng-app="app.core">
<div ng-view> </div>
</div>
在页面加载时,home-template.html 被插入到 ng-view 中。
下面没有线索
what would be the right way to call only dataService's read() on page load?
我是一名优秀的程序员,十分优秀!