Questions tagged as 'angularjs'

2
answers

Persistence of data in AngularJS

I have an app mounted, which is structured as follows: Menú - Sección 1 - Sección 2 - Sección 3 Each of the sections is a view, which loads the data of an API, which is executed when accessing each of the views. My question is, is th...
asked by 20.01.2017 / 17:33
1
answer

Get the first element of an array with AngularJS

I'm starting in angularjs and I've already created my first API with djangorestframework . I have this factory and a controller to consume the data: (function(){ "use strict"; angular.module('core.controllers', []) .controller('...
asked by 22.04.2016 / 04:13
2
answers

Error compiling using ionic build android

I am developing a hybrid application using ionic framework , but I began to notice some errors when viewing the views in chrome, it was that I did not let me reflect more changes made at the level of code in the views; then I happened to fire...
asked by 09.03.2016 / 22:26
2
answers

Any alternative for req.files in NodeJS v0.12.5?

I need to upload a file CSV to later save it in the database, this with angularjs and nodejs , but due to project restrictions we are using NodeJS v0.12.5 and does not support req.files Do you know any alternative or w...
asked by 02.02.2016 / 18:29
2
answers

Error handling in Angular

I have this code for a token , generated with JWT , then I return it to the application if the user accessed it correctly. var token = $localStorage.token; var base64Url = token.split('.')[1]; var base64 = base64Url.replace('-', '+').re...
asked by 18.02.2016 / 17:15
1
answer

Show Input as selected in a Select

I'm trying to show / hide an input according to what has been selected in a Select but I can not get it HTML <section class="row nm"> <div class="column g-12 nbp denunciaMsg">...
asked by 04.09.2018 / 15:36
1
answer

Why does not angular-tour work in sight?

I am using the angular-tour library that will guide me in case of doubts about certain functionalities of the screen. But I can not make it work for me. In the index.html file, I have imported: <link rel="bower_components/ang...
asked by 29.10.2018 / 00:39
1
answer

Driver in ANgularJS

This time I write because I have a problem in a small app of AngularJS and I am trying to connect to a controller with an example that I read in a book, but it is not showing me the variable $ scope that I declared in the controller . This is th...
asked by 24.03.2018 / 14:04
1
answer

How can I change the value of a variable in AngularJs?

I need to create a variable that stores the state of the función I execute in the $ interval called $scope.getSignatureCallStatus(); that function executes a request that saves in a variable $scope.callStatus = res.data; the...
asked by 08.03.2018 / 15:41
1
answer

Error upload txt angularJS directive

JS myapp.controller(function($scope){ $scope.msg="Hola" $scope.$watch('file',function(file){ console.log('arguments', file); }) }); myapp.directive("fileinput", function(){ return{ scope : { fileinput :...
asked by 09.03.2018 / 11:07