Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
32 views

I am new in angular js. I have the following code angular.module('app', ['components']) .controller('MyApp', function($scope) { $scope.message = "Hello World!"; }); what is the meaning ...
John333's user avatar
  • 83
1 vote
4 answers
2k views

I have included my component's .css file in this manner ` angular. module('home'). component('home', { templateUrl: 'home/home.template.html', styleUrls: 'home/home.component.css' ...
Madhur Rai's user avatar
-1 votes
1 answer
454 views

I'm having these errors in angularJS, with well-imported libraries, I don't know what might be happening. Exactly these two: Uncaught TypeError: angular.service is not a function at ...
userem's user avatar
  • 1
1 vote
1 answer
82 views

Controller is not recognizing - AngularJS error I've a controller defined in controllerPloyee.js called controllerPloyee which was working before i added the ngRoute and made to route. The error that ...
Thomas's user avatar
  • 13
0 votes
0 answers
59 views

I have an angularJS app with three modules: myApp(parent/core module), services(contains all the factories and services), and controllers(contains all the controllers). This is my app.js file angular....
user avatar
0 votes
1 answer
294 views

after deploying the "AngularJs_1.5.11" app to "azure-websites" using "azure-devops" continuous-integration and deployment gives error: [$injector:modulerr] Failed to instantiate module app due to: ...
Vijay Ande's user avatar
1 vote
0 answers
74 views

I'm working with an angularjs + ui-router application which is a shell application of my other angularjs application (basically header + footer + sidenav). Each application I'm developing is complied ...
NadavSt's user avatar
  • 113
0 votes
1 answer
59 views

Working on an old project using AngularJS, and seem to be getting the good old "Failed to instantiate module" error due to "Unknown provider", but the funny thing is that the module that provides this ...
Guy Park's user avatar
  • 1,067
1 vote
2 answers
93 views

I'm trying to split the code into Controller and Service files as below. Module.js /// <reference path="../angular.js" /> /// <reference path="../angular-resource.js" /> var ...
user11130182's user avatar
1 vote
1 answer
381 views

I want to implement traits like PHP in AngularJs. What is the best solution to do it?
Roham Tehrani's user avatar
0 votes
1 answer
124 views

I have configurations.js file which having var configurationModule = angular.module('configuration', ['restangular', 'notification']); configurationModule.factory('clientConfigSvc', function (...
Santosh Kori's user avatar
2 votes
1 answer
70 views

I am searching for a tutorial on specifically this, but don't seem to find it, so maybe its something I missed: If I declare a module, saved as myproject.js var myProject = angular.module('myProject'...
BaneStar007's user avatar
0 votes
1 answer
74 views

I used two controllers in my angular module, but one is not working, I don't know what is wrong, I've browsed online for solution but I can't get what's wrong. var app = angular.module('myWebsite'...
atomty's user avatar
  • 187
1 vote
3 answers
1k views

I don't understand what's the difference between module dependency and service dependency. For example, angular.module('components.users', []) .controller('UsersController', function(Users) { ...
user1888955's user avatar
0 votes
1 answer
426 views

I am trying to add a dependency for the project, is a simple gallery lightbox for angularjs. https://github.com/compact/angular-bootstrap-lightbox I followed the steps, tried using npm, I ended up ...
Jhonycage's user avatar
  • 889

15 30 50 per page
1
2 3 4 5
18