我正在尝试将数据从外部js文件传递到指令角文件。 这就是我正在做的事情。
在我的外部js文件中:
var formatData = {
id: 1,
state: 'moving'
}
angular.element(document).scope().$broadcast('sendData', formatData);
在我的指令中:
scope.$on('API.sendData', function(formatData) {
console.dir(formatData);
});
记录了什么:
帮助?
答案 0 :(得分:2)
您应该使用侦听器函数的第二个参数,第一个是事件数据。
scope.$on('API.sendData', function(event, formatData) {
console.dir(formatData);
});
希望这会有所帮助。