ng 提供 $log 这个服务用于向终端输出相关信息:
var TestCtrl = function($log){ $log.error('error'); $log.info('info'); $log.log('log'); $log.warn('warn'); }