感谢您查看此主题。我有这种情况,我在 AngularJS 中实现 PrototypeJS [Event.observe] 方法时遇到问题。
app.controller("MyCtrl", function($scope) {
Event.observe(window, "load", function() {
console.log("event triggered!");
// others statements here...
});
});
我尝试将Event.observe()
置于控制器区域之外,但它的工作原理是Event.observe()
首先在MyCtrl
之前触发,其中应该是另一种方式。
我计划为Event.observe()
实施某种指令,但我不确定这是否是正确的解决方案。
如果你有更多的建议或澄清,我愿意接受。