Skip to main content

Posts

Showing posts from May, 2015

Angular.js Error: Unknown provider: CompanyProvider<- Company

ERROR: Error : Unknown provider : CompanyProvider <- Company   Anguar.js throws this kind of error related to the Model (here it is Company) name / module name.   FIX:      1. Check the defined model is existing in the Models folder , in the mmmm.Json file and check the Model Name.   { "name": "Company", "base": "PersistedModel", "idInjection": true, "properties": { "name": { "type": "string", "required": true } }   2. Check the resources file created by $resource for the model name.   3. If you are using "Add New" form, make sure use a unique empty object name for that.   like, instead 'Company' or 'company' - use 'newCompany' that help avoid miss matching local objects with Model references.   .controller('AddCompanyController', ['$scope', ' Company ', '$state...