gpt4 book ai didi

ionic-framework - ionic - ion-nav-buttons ng-click 不起作用

转载 作者:行者123 更新时间:2023-12-02 21:19:34 26 4
gpt4 key购买 nike

我添加了一个完全按照文档记录的 ion-nav-button(ion-view 的直接后代),并添加了一个未触发的 ng-click 事件。

知道为什么吗?

我附上了该问题的 plunkr。

http://plnkr.co/edit/cZ9wDlhJJzebBr1WR3rT?p=preview

谢谢!乌里

<ion-view title="Dashboard">
<ion-nav-buttons side="right">
<button class="button" ng-click="alert('signup btn clicked');">
Signup
</button>
</ion-nav-buttons>
<ion-content class="has-header padding">
<h1>Ionic scroll</h1>
<p>On iphone tapping slightly above or below text doesn't open keyboard.</p>
<input type="text" name="name" style="border: 1px solid grey;">
</ion-content>
</ion-view>

最佳答案

那是因为DashController中没有函数alert(...);ng-click="alert('xx') 被翻译为 $scope.alert('xx');

因此,如果您在 DashController 中创建:

$scope.alert = function(text) {
alert(text);
}

它会起作用。

关于ionic-framework - ionic - ion-nav-buttons ng-click 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28516806/

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