“提示”不关闭“取消”按钮
在我的系统上,“取消”按钮不起作用。我复制粘贴了原始代码来做一个简单的测试,但不起作用。
我找不到什么问题。
测试示例:http: //jsfiddle.net/Chofoteddy/y7D4r/1
HTML:
<body ng-app="ionic.example" ng-controller="PopupCtrl">
<button class="button" ng-click="showPrompt()">Prompt</button>
<pre>Response: {{response}}</pre>
</body>
JavaScript:
angular
.module('ionic.example', ['ionic'])
.controller('PopupCtrl', function($scope, $ionicPopup) {
$scope.response = 'Hello World';
$scope.showPrompt = function() {
$ionicPopup.prompt({
title: 'ID Check',
subTitle: 'What is your name?'
}).then(function(res) {
$scope.response = res;
});
};
});
==== 西班牙语 ====
"prompt" no cierra con botón "cancel"
En mi sistema no funciona el botón “取消”。Hice un copy paste del código original para hacer una prueba sencilla y tampoco funciona。
没有 encuentro cuál es el 错误。
Ejemlo de prueba:http: //jsfiddle.net/Chofoteddy/y7D4r/1