你能告诉我为什么在按钮点击两次显示提醒?
这是我的屁股
http://plnkr.co/edit/vtmYAG2d1gmnPjnxovJw?p=preview
/*global define,console */ define(['app'],function(app){ 'use strict'; app.controller('LoginCtrl',['$scope',function($scope) { $scope.login = function () { alert("Login is clicked") }; }]); });
如果您使用较新版本的Ionic,它可以工作:
http://plnkr.co/edit/K2BLrUyOEeoDxHc9LyTl?p=preview
原文链接:https://www.f2er.com/angularjs/142473.htmlhttp://plnkr.co/edit/K2BLrUyOEeoDxHc9LyTl?p=preview
我用了http://code.ionicframework.com/1.0.0/js/ionic.bundle.min.js
你的例子使用
http://code.ionicframework.com/1.0.0-beta.1/js/ionic.bundle.min.js
requirejs.config({ paths: { ionic:'http://code.ionicframework.com/1.0.0/js/ionic.bundle.min',},shim: { ionic : {exports : 'ionic'} },priority: [ 'ionic' ],deps: [ 'bootstrap' ]
});