本文介绍了从调用浏览器控制台角控制器功能的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否有可能从控制台(Chrome开发人员工具控制台)?
调用AngularJS控制器功能例如
app.controller('AddCtrl',['$范围',函数($范围){ $ scope.save =功能(){
//做的东西在这里 - 从控制台叫它
};}]);
解决方案
是的,你只需要使用 angular.element
来得到的范围内这是一个元素的控制器:
angular.element(yourElement),范围()保存()。
Is it possible to call AngularJS controller function from console (Chrome Developer Tools console)?
e.g.
app.controller('AddCtrl', ['$scope', function ($scope) {
$scope.save = function(){
// do stuff here - call it from console
};
}]);
解决方案
Yes, you just need to use angular.element
to get an element that's within the scope of your controller:
angular.element("yourElement").scope().save();
这篇关于从调用浏览器控制台角控制器功能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!