You need to sign in to do that
Don't have an account?

「Lightning コンポーネントの基本」の「コンポーネントとイベントの接続」のハンズオンについて
Trailheadでバッチを収集中です。
「Lightning コンポーネントの基本」の「コンポーネントとイベントの接続」のハンズオンを進めているのですが、どうしても以下のエラーを消すことができません。
Challenge Not yet complete... here's what's wrong:
The campingList component doesn't appear to have a Quantity input field in the form using a Lightning Base component.
campingListFormに以下のようにコードを書いています。
<lightning:input type="number"
label="Quantity"
name="Quantity"
aura:id="Quantity"
required="true"
value="{!v.newItem.Quantity__c}"/>
どなたかこのエラーの解消方法がお分かりの方がいらっしゃいましたら、ご教示ください。
よろしくお願いします。
「Lightning コンポーネントの基本」の「コンポーネントとイベントの接続」のハンズオンを進めているのですが、どうしても以下のエラーを消すことができません。
Challenge Not yet complete... here's what's wrong:
The campingList component doesn't appear to have a Quantity input field in the form using a Lightning Base component.
campingListFormに以下のようにコードを書いています。
<lightning:input type="number"
label="Quantity"
name="Quantity"
aura:id="Quantity"
required="true"
value="{!v.newItem.Quantity__c}"/>
どなたかこのエラーの解消方法がお分かりの方がいらっしゃいましたら、ご教示ください。
よろしくお願いします。
<lightning:input type="number" label="Quantity" class="slds-input"
name="quantity" min="1"
value="{!v.newItem.Quantity__c}"
required="true" aura:id="itemformQuantity"/>