gpt4 book ai didi

angularjs - 在 Ionic 框架中单击按钮时出错

转载 作者:行者123 更新时间:2023-12-01 01:01:44 25 4
gpt4 key购买 nike

我正在尝试学习 ionic 框架。

对于了解这个框架的人来说,这可能是一个非常简单的问题。但我无法完成这项工作。

我需要做的只是在单击按钮时显示警报。

我的 index.html 代码包含按钮为:

<div class="bar bar-footer">
<div class="title">
<button class="button button-light" ng-click="showAlert()">
Origin
</button>
</div>
</div>

这是我的js代码:
angular.module('todo', ['ionic'])
.controller('TodoCtrl', function($scope) {
{
// Use our scope for the scope of the modal to keep it simple
scope: $scope
}
});

$scope.showAlert = function() {
alert("show");
};

单击按钮时出现此错误:
Uncaught ReferenceError: $scope is not defined app.js:9
(anonymous function)

知道我做错了什么吗?

最佳答案

请更改您的代码

angular.module('todo', ['ionic'])
.controller('TodoCtrl', function($scope) {
{
// Use our scope for the scope of the modal to keep it simple
scope: $scope
}
});

$scope.showAlert = function() {
alert("show");
};


angular.module('todo', ['ionic'])
.controller('TodoCtrl', function($scope) {
{
// Use our scope for the scope of the modal to keep it simple
$scope.showAlert = function() {
alert("show");
};
}
});

关于angularjs - 在 Ionic 框架中单击按钮时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22627782/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com