Questions tagged as 'angularjs'

1
answer

How to do a select using Angularjs?

I'm trying to make a select field in my view and I'm using the framework Angular.js, but I'm not used to working with it and I'm not able to create the function in controller . Here is an example of the code I tried to make that did not wor...
asked by 20.05.2014 / 18:29
2
answers

Request GET with AngularJs

Good afternoon I'm trying to get a Get request with AngularJs but I do not receive any response and the only console.log that executes is the last that is already outside the request; angular.module("listaTelefonica").controller("lista...
asked by 10.12.2018 / 16:20
1
answer

AngularJS ng-repeat is not picking values

I am returning a json with this code: $scope.movies = angular.toJson(results, true); and getting this json: link And trying to get the data with this: <ion-item ng-repeat="movie in movies"> {{movie.title}} </ion-item>...
asked by 05.05.2014 / 20:21
1
answer

How to know which State I'm coming from, using ui-router?

I'm using Ui-router's Angular-Ui and the only thing I need to know is which state I'm coming from. I already have for example; app.controller("MainCtrl", function($scope,$state) { //$state.current ok, mas de onde eu vim? }); How to...
asked by 27.05.2014 / 23:05
2
answers

Repeat loops with AngularJS

I'm trying to list the data of two loops ng-repeat of my code, but 1 of them is not working. In this case, I'm using: <ul class="nav nav-stacked nav-pills col-md-2" > <li ng-repeat="g in formulario.grupos"> <a...
asked by 07.02.2014 / 18:19
1
answer

How to get a Blob response with AngularJs?

I was reading in the MDN documentation that it is possible to get a response Blob through ajax, according to the code below: var oReq = new XMLHttpRequest(); oReq.open("GET", "/myfile.png", true); oReq.responseType = "blob"; oReq.onloa...
asked by 09.08.2018 / 18:03
1
answer

Angular UI-Bootstrap Carousel with Multiple Slides

I'm using Carousel UI-Bootstrap with AngularJs, but only shows 1 slide at a time. I wanted multiple slides like these examples below. Bootstrap 3 Multiple Slide Carousel , another example, Bootstrap 3 Carousel Multiple Items Increment by...
asked by 15.08.2018 / 16:03
1
answer

Block special characters in input matInput

How do I block special characters in: I tried it this way, but it did not really work: pattern="^ [a-zA-Z0-9] + $" Does anyone have any ideas? Thank you in advance!     
asked by 04.10.2018 / 13:08
1
answer

How to get the result of a JSON in Ionic 3, but the echo result in PHP

I need to get the result of my JSON which can be "Registration already exists." or "Successful Registration." In my registration, I'm doing it this way: submit(){ var nome = this.data.nome; var celular = this.data.celular; var...
asked by 24.07.2018 / 21:21
1
answer

Select2 Bootstrap AngularJS

Does anyone use Select2 Bootstrap on AngularJS? I am having a problem ... when I click the options list it shows the correct value that comes from the bank, but in the view always appears the first record. When shooting select2 works fine. >  ...
asked by 24.07.2018 / 03:43