{
controller: ListController,
controllerAs: 'itemsList'
}
<div ng-repeat="item in itemsList.data">
<button ng-disabled="itemList.editing[item.id]"
ng-click="itemList.toggleEditMode(item)">Edit</button>
</div>
<div class="container" ng-controller="TestQuestions">
<div id="row" ng-repeat="question in questions">
<h4 class="page-header">{{question.id}}. {{question.question}}</h4>
<div ng-repeat="answer in question.answer">
<p></p>
<p></p>
<button type="button" class="btn btn-info" value="Input Button">{{answer}}</button>
</div>
</div>
</div>
.directive('customTag', function($parse) {
return {
require: '^ngModel', // Запрашиваю ng-model с parrent scope, так как, у этой свой локальный скоуп
restrict: 'E',
compile: function(el, attr) {
var input = angular.element('<input/>'); // далее создаю инпут элемент
el.replaceWith(input); // после чего меняю кастомный тег на созданный инпут
return function linking($scope, el, attr, ngModel) {
var type = $parse(attr.type)($scope); // Вот вам ваш тип
// ngModel - как я понима должна быть ссылка на модель
//
var mod = ngModel.$ViewValue;
el.attr('ng-model, mod) // поэтому создаем тег и добавляем туда наше значение из parent scope
var Person = $resource(...);
Person.prototype.fullName = function() { return this.firstName + this.lastName; }
Person.query().$promise
.then(function(response) {
return response[0].fullName(); // Прототипом каждого элемента в списке будет Person
});
.run(function($rootScope) {
$rootScope.$on('$stateChangeError', function() {
console.error(arguments[5]);
});
});
resolve: {
ProductsPrepService: function(products) {
app.controller('PhoneCntrl', ['$scope', '$routeParams', function($scope, $routeParams){
$http.get('phones/' + $routeParams.phoneId + '.json').success(function(data) {
$scope.phone = data;
});
$scope.phoneId = $routeParams.phoneId;
}]);