1
Im имеющий следующее:
$rootScope.$on('setmoney',function (thisdata) {
console.log("setting money");
console.log("money is : " + thisdata);
});
и это где-то еще:
$rootScope.$broadcast('setmoney', {cash: 100000});
Как я могу убедиться, что я могу получить параметр наличных в функция setmoney rootscope.on?
выход после thisdata:
Object {name: "setmoney", targetScope: Scope, defaultPrevented: false, currentScope: Scope}
currentScope
:
null
defaultPrevented
:
false
name
:
"setmoney"
preventDefault
:
()
targetScope
:
Scope
__proto__
:
Object
спас меня от головной боли .. большое спасибо чуваку –