gpt4 book ai didi

javascript - OnsenUI、Angular 和在警报对话框后刷新 UI 组件

转载 作者:行者123 更新时间:2023-12-03 06:57:32 24 4
gpt4 key购买 nike

我正在使用 Monaca、OnsenUI 和 Angular 开发移动应用程序。在页面中,我有一个可点击项目的列表;当用户点击某个条目时,应出现一个对话框以输入值。该值应显示在点击的列表项中。它确实可以工作,但直到我再次点击列表项之前,即使只是取消对话框,该值也不会刷新。我希望在用户关闭对话框后立即更新显示的值。

这是一个 HTML 片段:

<ons-page>

<ons-row style="margin-top: 10px; text-align: center;">
<ons-col ng-controller="NewSubmissionController">
<ons-list id="materialList" style="margin-top: 12px;">
<ons-list-header>Pick the Materials</ons-list-header>
<ons-list-item modifier="tappable" ng-click="doPickMaterial('ferrous')">
Ferrous (<span ng-bind="materialCounters['ferrous']"></span>)
</ons-list-item>
<ons-list-item modifier="tappable" ng-click="doPickMaterial('non-ferrous')">
Metal, non-ferrous ({{materialCounters['non-ferrous']}})
</ons-list-item>
<ons-list-item modifier="tappable" ng-click="doPickMaterial('plastic')">
Plastic ({{materialCounters['plastic']}})
</ons-list-item>
<ons-list-item modifier="tappable" ng-click="doPickMaterial('other')">
Other ({{materialCounters['other']}})
</ons-list-item>
</ons-list>
</ons-col>
</ons-row>

</ons-page>

这是 Controller :

app.controller('NewSubmissionController', function($scope) {

$scope.materialCounters = {
'ferrous': 0,
'non-ferrous': 0,
'plastic': 0,
'other': 0
};

$scope.doPickMaterial = function(matType) {
ons.notification.prompt({
title: 'Material: ' + matType,
message: 'Please enter number of items',
cancelable: true,
animation: 'slide',
callback: function(newCt) {
alert('Input value: *' + newCt + '*');
if (newCt != null) {
if (newCt == '') { // An empty input will be taken as zero
newCt = 0;
}
$scope.materialCounters[matType] = n;
alert('Count for ' + matType + ': ' + $scope.materialCounters[matType]);
}
}
});
};
});

我尝试使用 ng-bind 和双大括号表示法,但行为没有差异。

最佳答案

基本上,如果您想更新 View ,只需手动调用 $scope.apply() ,所有内容都会自行更新。可能有一些“更智能”的解决方案,但由于您使用的是 ons.notification.prompt 这看起来是最简单的解决方案。

关于javascript - OnsenUI、Angular 和在警报对话框后刷新 UI 组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37209932/

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