self...
如何调用此控制器外的self.loadshotlist_comp(_translate)
函数?
显然我已经使用了路由,因此html上没有import {COLORS} from '../../constants/StylesConstants';
class SearchController {
constructor($log, $state) {
this.buttonRipple = COLORS.buttonRipple;
this.showDescription = false;
$log.log('$state.params');
$log.log($state.params);
}
show(index) {
this.showDescription = index;
}
}
export const Search = {
template: require('./Search.html'),
controller: SearchController
};
。