我已经构建了一个基本的应用程序表单meanjs样板代码并尝试注入智能表来显示表数据下面是我所做的更改,但不确定为什么它不起作用
安装智能表
凉亭安装角度智能表
npm 安装
在 config.js 中添加了智能表依赖项
var applicationModuleVendorDependencies = ['ngResource', 'ngCookies', 'ngAnimate', 'ngTouch', 'ngSanitize', 'ui.router', 'ui.bootstrap', 'ui.utils', 'smart-table'];
在 env/all.js 中添加了 smart-table js 的位置
'public/lib/angular-smart-table/smart-table.js'
修改了 controller.js 以添加 smart-table 作为依赖
angular.module('exceptions',['smart-table']).controller(.....
在第 4 步之后我的模块没有被加载我曾尝试修改 client.module.js 并添加以下行但没有运气
ApplicationConfiguration.registerModule('smart-table');
如果我遗漏任何东西或在 MEANJS 中注入 3rd 方模块的正确方法,谁能指出我