<td>{{ '{{' }}hotel.name{{ '}}' }}</td>
<td>{{ '{{' }}hotel.star{{ '}}' }}</td>
<td>{{ '{{' }}hotel.type{{ '}}' }}</td>
<td>{{ '{{' }}hotel.price{{ '}}' }}</td>
{% verbatim %}
<td>{{hotel.name}}</td>
<td>{{hotel.star}}</td>
<td>{{hotel.type}}</td>
<td>{{hotel.price}}</td>
{% endverbatim %}
<input #inp>
<button (click)="focus($event, inp)">focus</button>
focus(e, el) {
el.focus();
}
$scope.name = '123
<div ng-repeat="user in dialogs.response">
<p>{{ name }}</p>
<p>{{ login }}</p>
<p>{{ data_reg }}</p>
</div>
function() {
return $http.get(''http://api/v1/profiles?page=' + page).then(function (result) {
$scope.page += 1;
return angular.forEach(result.data, function (item) {
return $scope.profiles.push(item);
});
});
};