gpt4 book ai didi

angular - Ion-slides 不更新动态数据

转载 作者:行者123 更新时间:2023-12-04 17:40:37 25 4
gpt4 key购买 nike

我正在使用最新版本的 ionic 4.0.0
我正在尝试在单击按钮时更新滑块的内容,但即使在 TypeScript 代码中更改了数组值,它也不会更新内容。
这是我的 View 代码:

<ion-slides class="main-slide" pager=true loop="true" #mainSlider [options]="mainSliderOpts">
<ion-slide class="change-display" *ngFor="let product of products;">
<div class="item-container">
<div class="strike-title">Strike Price</div>
<div class="devider"></div>

<p class="description">
To at least what price do you think the stock will move from its current price if
<strong>${{product.price}}</strong>?
</p>
<div class="lose" [ngClass]="{ 'profit': product.profit > 0,'lose': product.profit < 0 }">
<span *ngIf="product.profit > 0">+</span>{{product.profit}}%
</div>


<div class="price-contract">
PRICE PER CONTRACT: <strong>${{product.contractPrice}}</strong>
</div>

<ion-button class="next-btn" (click)=priceSliderChanged() expand="full" color="dark">Change Values</ion-button>

</div>
</ion-slide>

这是我的 typescript 代码:
constructor() {
this.products = [{
title: 'NFLX',
price: 313.2,
prices: [
297.50,
295.00,
292.75,
290.75
],
profit: 4,
contractPrice: 400 //defalt price
},
{
title: 'NFLX 1',
price: 413.2,
prices: [
297.50,
295.00,
292.75,
290.75
],
profit: -6.6,
contractPrice: 500 //defalt price
},
{
title: 'NFLX 2',
price: 213.2,
prices: [
297.50,
295.00,
292.75,
290.75
],
profit: -7,
contractPrice: 300 //defalt price
}
]

}

priceSliderChanged() {
this.mainSlider.getActiveIndex().then((index) => {
var activeProduct = this.products[index];
activeProduct.profit = this.randomIntFromInterval(-5, 6);
activeProduct.contractPrice = this.randomIntFromInterval(350, 460);
//setTimeout(()=>{
this.mainSlider.update().then((d: any) => {
// alert(d);
});
});

}

如您所见,如果我控制台但未在“.price-contract”div 中更改,则已成功更改了 contractPrice。

谢谢你的帮助。

最佳答案

我不确定您是否是这种情况,但在 Ionic 4 测试版中我遇到了同样的问题,因为 getActiveIndex()返回索引从 1 而不是从 0。例如,如果第一张幻灯片处于事件状态,它将返回 1 而不是 0。

所以尝试更改此代码:

priceSliderChanged() {
this.mainSlider.getActiveIndex().then((index) => {
index-=1; //add this code
var activeProduct = this.products[index];
activeProduct.profit = this.randomIntFromInterval(-5, 6);
activeProduct.contractPrice = this.randomIntFromInterval(350, 460);
});
}

希望这可以帮助。

关于angular - Ion-slides 不更新动态数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54634850/

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