b/c 我正在使用 angular js,我经常在解析 $rootScope.something 时感到头疼
有可能做一个
function inthecontextof(obj, func){
func.call(obj);
}
我能做的
inthecontextof($rootScope, function(){
flamingo = 5 //$rootScope.flamingo is what im refering to
$apply()
}