Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我尝试使用简单的 CRUD 操作时出现此错误
ReferenceError: Backand 未定义
我按照他们的要求一步一步地做了所有事情,但是出了点问题,我可以弄清楚是什么……谢谢!
确保你做这些事情:
在 index.html 文件中添加 backand sdk 作为脚本。
src="//cdn.backand.net/backand/dist/1.8.2/backand.min.js"
添加'backand'作为角度模块依赖
angular.module('YOUR-APP-NAME', ['backand'])
在您的控制器中添加带有“B”大写字母的 Backand。
myApp.controller('SimpleController', function(Backand){ })