Questions tagged as 'angularjs'

2
answers

Object filter disregarding accents in angleJS with Ionic

Talk to people, I would like to make an angle filter that would disregard the accents. This filter is applied over a list of objects that have a name property for example that we filter on top of this property. I'm using the approach in th...
asked by 13.05.2015 / 17:17
1
answer

Need for Server Side Award for Content javascript - AngularJs

Knowing that starting this year google crawler runs javascript , considering the indexing of a content that is displayed using AngularJs, is there still a need for a version of the same content rendered on the server side for SEO? Plus : Pr...
asked by 05.08.2014 / 14:11
1
answer

How to filter with ANGULAR JS not to repeat the same names?

I have 2 related tables in the bank: The first table: if it is called restaurant the other Table: Cardapio. The Cardapio Table receives the primary key from the restaurant, so it becomes foreign until then, I get this information from the bank w...
asked by 08.07.2016 / 21:16
2
answers

How to use a module in AngularJS?

I have the following code in AngularJS but I get the error:    Error: [$ injector: unpr] Unknown provider: AuthenticationProvider <   Authentication My code is as follows: app.js angular.module('app') .controller('HomeController',...
asked by 11.12.2013 / 17:35
1
answer

What is reactivity in JavaScript?

I see frameworks as Angular, Vue, React, the concept of reactivity . I'm totally uninvolved in the subject, and from what little I know, the concept of reactive programming is basically the realization of asynchronous data flow. A variable...
asked by 10.11.2017 / 13:02
1
answer

Make an "or" inside the key of an attribute in JS

I have the following code: scope.cm = 1; scope.mm = 2; scope.km = 3; tipoDeMedida[scope.cm || scope.mm || scope.km] = function(arrayQualquer){ //executo meu bloco de código X. } tipoDeMedida[scope.km](arrayQualquer)...
asked by 24.02.2017 / 18:29
2
answers

What is the difference between directive and component?

It seems that in newer versions, in addition to the directive method, Angular 1 also has a method called component . I would like to understand the main differences between one and the other. What are the main differences be...
asked by 13.03.2017 / 19:21
1
answer

How to upload files Angular js

IwantedtoknownowhowIcanhandleandsendthefiletourlthatIwanttoupload.     
asked by 09.09.2015 / 16:18
6
answers

How to validate date with AngularJS or jQuery?

I have a simple input that gets a date, how do I validate that date if it's true? For example:    31/02/2006 this does not exist   20/20/9999 this does not exist <input name="data" ui-mask="99/99/9999" kendo-date-picker name="t"...
asked by 08.10.2015 / 16:16
2
answers

Angular blocking submit form GET

I have a form where I send a query to the current url, via parameters GET . For example, I have url/teste , when sending the query through this form, it will be url/teste?term=minha+consulta . I did not use Angular in...
asked by 08.08.2016 / 17:08