I get this error when I'm trying to use simple CRUD action
ReferenceError: Backand is not defined
I did everything step by step like they requested but something is wrong and I can figure out what... thanks!
I get this error when I'm trying to use simple CRUD action
ReferenceError: Backand is not defined
I did everything step by step like they requested but something is wrong and I can figure out what... thanks!
Ensure you do this stuffs:
Add backand sdk as script in your index.html files.
src="//cdn.backand.net/backand/dist/1.8.2/backand.min.js"
Add 'backand' as angular module dependency
angular.module('YOUR-APP-NAME', ['backand'])
In your controller add Backand with 'B' uppercase.
myApp.controller('SimpleController', function(Backand){ })