角度js即使像简单的表达式也不显示任何内容。我想要执行下面的代码,但没有希望。任何人都可以帮助我。
以下代码用于显示视图。
id|name|work_start|work_end
js code
yii
请告诉我我错在哪里。什么都没有用。表达式在ouptut中显示为{{1 + 2}}。
答案 0 :(得分:1)
你这里有一个错字:
Insert
有2个昏迷,所以依赖性搞砸了。
答案 1 :(得分:0)
我尝试以不同的方式使用相同的视图但我现在修改了js文件它正常工作。
var myApp = angular.module('spiceApp', []);
myApp.controller('SpicyController', ['$scope', '$http', 'userService',function ($scope, $http, userService) {
//below code is using sservice
$scope.notify = function (msg) {
userService(msg);
};
}]);
myApp.factory('userService', ['$window', function (win) {
var msgs = [];
return function (msg) {
msgs.push(msg);
if (msgs.length == 3) {
win.alert(msgs.join('\n'));
msgs = [];
}
};
}]);
myApp.controller('List', ['$scope', 'getList', function ($scope, getList) {
$scope.bringList = function () {
getList.getAppsList.then(function (data) {
$scope.appslist = data;
});
};
}]);
var getList = angular.module("spiceApp").factory("getList", ['$http', function ($http, getList) {
return {
getAppsList: (function (response) {
return $http({
method: 'GET',
url: 'GetAppsList'
})
.then(function (response) {
console.log("coming from servicejs", response.data);
//return data when promise resolved
//that would help you to continue promise chain.
return response.data;
});
})()
};
return getList;
}]);