问题描述
- angularJs的问题,困惑2天了,求解答!谢谢!
-
angular.module("modelApp",["ionic"])
.controller("modelController", function ($scope,$http) {
这里面怎么调用到下面函数传入的str呢??
$scope.doRefresh = function() {
}
});function doSome(str){
navigator.notification.alert("phoneGap中js的弹出框" ,null, str+"", "sssss");
这里面怎么调用controller中的写的函数doRefresh()呢?
}
解决方案
你把doSome那个函数写成$scope.doSome放入Controller中即可。既然用了angular了,就不要写全局的js函数了。
时间: 2024-12-29 09:35:41