add thinkData.controller property

This commit is contained in:
lichengyin 2015-12-29 09:38:34 +08:00
parent dc5049f00b
commit 104a82173b

View File

@ -44,4 +44,12 @@ thinkData.error = {};
* store template file list, for check template file exist in view class
* @type {Object}
*/
thinkData.template = {};
thinkData.template = {};
/**
* store sorted controllers in module, for parse route which support sub controllers
* {
* home: ['test/index', 'test', 'index', 'base']
* }
* @type {Object}
*/
thinkData.controller = {};