Questions tagged as 'angularjs-scope'

2
answers

Show result with Angular JS

I work with AngularJS v1, the problem is that it does not show the result on the page, it just shows me {{resultado}} does not show me the value that contains that variable, I show the code. <!DOCTYPE html> <html lang="en" ng-a...
asked by 17.09.2018 / 18:36
0
answers

What would be the best way to upload data to a form to update with the Angular JS framework?

// create the module and name it scotchApp var scotchApp = angular.module('scotchApp', ['ngRoute']); // configure our routes scotchApp.config(function($routeProvider) { $routeProvider // route for the home page .when('/', {...
asked by 20.04.2018 / 03:06
2
answers

I calculate with $ scope

Best regards to all, I have the following problem, I am trying to base myself on a code that works correctly, which is as follows: <!DOCTYPE html> <html> <head> <title> mi aplicacion </title> </head&...
asked by 21.10.2017 / 07:04
2
answers

How to separate my factory in another .js file?

my question is this, I'm learning AngularJS, and I'm doing the code for a login, where I've done factory's, but everything is in the same file (app.js) as shown below: '(function () {     var app = angular.module ('login', ['ngStorage']); /...
asked by 05.05.2017 / 16:13