使用 total.js 创建新路线时出错
Error with creating new route with total.js
我在使用 totals.js.When 时遇到以下问题 我尝试添加新路线时出现以下错误:
The controller's route does not define any schema.
(http://0.0.0.0:8000/****/****/****/1)
我已使用 schema.addWorkflow 方法将此方法添加到架构中,但它看起来不起作用。
当您尝试在控制器中使用模式的方法(例如 $get、$query、$save 等)但尚未将模式名称标志添加到路由定义时,您会收到此错误
F.route('/routename', handler, ['*SchemaName']);
标志 *SchemaName
告诉框架您想要使用您使用 NEWSCHEMA('SchemaName')...
定义的架构
查看文档 here
我在使用 totals.js.When 时遇到以下问题 我尝试添加新路线时出现以下错误:
The controller's route does not define any schema. (http://0.0.0.0:8000/****/****/****/1)
我已使用 schema.addWorkflow 方法将此方法添加到架构中,但它看起来不起作用。
当您尝试在控制器中使用模式的方法(例如 $get、$query、$save 等)但尚未将模式名称标志添加到路由定义时,您会收到此错误
F.route('/routename', handler, ['*SchemaName']);
标志 *SchemaName
告诉框架您想要使用您使用 NEWSCHEMA('SchemaName')...
查看文档 here