Questions tagged as 'angular'

1
answer

Close modal when click away

I have a modal that when clicking outside it would like it to close. For issues with position issues, I'm using data-backdrop=false My modal: <div class="bd-example"> <button type="button" class="btn btn-primary" data-toggle...
asked by 18.07.2018 / 15:43
1
answer

Redeem data from another angular component

I have a component called login that when login completes the data of the user object, I need to get the "charge" field of this object and receive it in another component. I've tried: login.component.ts: public usuario: Usuario = new...
asked by 06.07.2018 / 17:21
1
answer

Browse fields input ng-repeat AngularJS

/* Retorna produtos banco de dados */ $scope.produtos = []; var carregaProduto = function () { $http.get("app/models/retornaProduto.php").then(function (response) { $scope.produtos = response.data; });...
asked by 03.07.2018 / 01:17
0
answers

Function $ even without jQuery

I have a project in angular2 v6, I'm doing the same without jquery and lodash, but when I type $ ('body') on the console it returns as if I had used jquery. When I type $ it shows.    ƒ $ (selector, [startNode]) {[Command Line API]} Do...
asked by 02.07.2018 / 19:37
0
answers

"Can not set property 'className' of null" Error function Angular 2+

In my template I have a button that calls the sign-in function: <button type="submit" name="entrar" (click)="fazerLogin()" routerLink="/home" class="login" id="login-button">Entrar</button> I've added a div for if the username o...
asked by 29.06.2018 / 14:58
0
answers

ngtest - Routes Angular InjectorError

I'm using the angular route system and everything is ok: export const routes: Routes = [ { path: '', redirectTo: '/login', pathMatch: 'full' }, ... AutenticacaoRoutes, ... UsuarioRoutes, { path: '**', component: Erro404Component...
asked by 13.07.2018 / 21:38
0
answers

Google maps within the Ionic 3 segment?

I wonder if it is possible to add this map on an ionic segment tab. I even managed to use the map perfectly as I want, but I would like to leave it only on a segment . When I put it, it looks like it stays out of segment and o...
asked by 12.07.2018 / 22:11
1
answer

Working with app routing in angle

My application starts in AppComponent, in AppComponent I set <router-outlet> </router-outlet> I have defined the following routes: const appRoutes: Routes = [ { path: '', component: LoginComponent } ]; const loginRout...
asked by 13.07.2018 / 18:08
0
answers

How to change angular version within an asp.net core project

I have an Asp.Net Core 2.0 project. Well, I need to now build some screens to make a CRUD using Angular . You should use the Angular 6 , here in the company. Well, when I added this Solution to the project in Angular the version of this...
asked by 13.07.2018 / 20:04
0
answers

Update (Put) in my project does not write to BD (MongoDB)

I need to do an editing screen and I can not. See how my component is (I deleted the imports to save space) @Component({ selector: 'app-operators', templateUrl: './operators.component.html', styleUrls: ['./operators.component.css'], pr...
asked by 22.07.2018 / 16:26