ngu-carousel ponts和changeDetection的问题

时间:2018-12-26 15:44:10

标签: angular carousel angular2-changedetection angular-changedetection

我对ngu-carousel点有疑问。 没有

怎么解决
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:fitsSystemWindows="true"
    android:background="#eea29a">

    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#eea29a"
            android:orientation="vertical"
            android:paddingTop="90dp"
            tools:ignore="UselessParent">

            <android.support.design.widget.TextInputLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:padding="20dp">

                <EditText
                    android:id="@+id/wordID"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:hint="@string/enter_a_word"
                    android:singleLine="true"
                    tools:ignore="Autofill,TextFields" />
            </android.support.design.widget.TextInputLayout>

            <android.support.design.widget.TextInputLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:padding="20dp">

                <EditText
                    android:id="@+id/meaningID"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:hint="@string/enter_the_meaning"
                    android:singleLine="true"
                    tools:ignore="Autofill,TextFields" />
            </android.support.design.widget.TextInputLayout>

            <NumberPicker
                android:id="@+id/language_picker"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" />

            <com.dd.morphingbutton.MorphingButton
                android:id="@+id/submitWordBtn"
                android:layout_width="90dp"
                android:layout_height="50dp"
                android:layout_gravity="center_horizontal"
                android:layout_marginTop="16dp"
                android:layout_marginBottom="10dp"
                android:text="@string/Upload"
                android:textColor="@color/input_register_bg" />

            <TextView
                android:id="@+id/startQuizText"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_horizontal"
                android:layout_marginBottom="15dp" />
        </LinearLayout>
    </android.support.v4.widget.NestedScrollView>
</LinearLayout>

我的HTML代码

changeDetection: ChangeDetectionStrategy.OnPush

我在控制台中出现的问题:

  

错误错误:ExpressionChangedAfterItHasBeenCheckedError:表达   检查后已更改。先前的值:“ ngForOf:”。当前   值:“ ngForOf:0、1、2、3、4、5、6、7、8、9、10、11、12、13、14、15、16、17、18”。

1 个答案:

答案 0 :(得分:0)

可能是您的语法有问题。您在这里定义了point两次。更改为

*ngFor="let pointNumber of carousel.pointNumbers; let pointIndex = index"