我目前正在编写一个基于另一个应用程序的Angular应用程序。我复制了一部分工作代码但是当我尝试运行它时会出现这个错误:
Controller 'ngSwitch', required by directive 'ngSwitchDefault', can't be found!
这是代码
<div ng-switch on="arg == 0">
<span ng-switch-when="true">-</span>
<table ng-switch-default border="0">
//input
</table>
</div>
当我将table指令更改为其他代码时,代码确实有效。
我在这里做错了什么?