有人知道如何将选中的值传递给Lightning Web组件中的复选框吗?我的代码如下:
import { LightningElement, track } from 'lwc';
export default class MyComponent extends LightningElement {
@track isChecked;
constructor() {
super();
isChecked = false;
}
}
<template>
<lightning-card title="My Card" icon-name="custom:custom9">
<div class="slds-m-around_medium">
<lightning-input type="checkbox" label="my checkbox" name="input1" checked="{isChecked}"></lightning-input>
</div>
</lightning-card>
</template>
它不起作用。
答案 0 :(得分:1)
答案很简单,将您的代码更改为:
import { LightningElement, track } from 'lwc';
export default class MyComponent extends LightningElement {
@track isChecked;
constructor() {
super();
isChecked = false;
}
}
<template>
<lightning-card title="My Card" icon-name="custom:custom9">
<div class="slds-m-around_medium">
<lightning-input type="checkbox" label="my checkbox" name="input1" checked={isChecked}></lightning-input>
</div>
</lightning-card>
</template>
checked 属性需要这样赋值:
checked={isChecked}
答案 1 :(得分:0)
请参考我为您编写的代码,如果不问我,这应该很有意义。
您的html复选框(一个或多个)
<template>
For multiple Checkbox use Checkbox Group
<lightning-checkbox-group name="Checkbox Group"
label="Checkbox Group"
options={options}
value={value}
onchange={handleChange}></lightning-checkbox-group>
<p>Selected Values are: {selectedValues}</p>
for just single Checkbox
<input type="checkbox" name="vehicle1" value="Bike" id="mycheck" onclick={myFunction}> I have a bike<br>
<p>Selected:</p> {checkvalue}
</template>
您的js处理此问题,对于单个复选框,它现在将值(您实际要求)分配给复选框以保持简单,您可以修改它以根据上一个值分配true。
import { LightningElement, track } from 'lwc';
export default class CheckboxGroupBasic extends LightningElement {
@track value = ['option1'];
@track checkvalue ;
get options() {
return [
{ label: 'Ross', value: 'option1' },
{ label: 'Rachel', value: 'option2' },
];
}
get selectedValues() {
return this.value.join(',');
}
handleChange(e) {
this.value = e.detail.value;
}
myFunction(e){ // it is simple assigning value. here you can toggle value
this.checkvalue = e.target.value;
}
}
我们有LWC Playground链接,您想要查看它的运行情况。 https://developer.salesforce.com/docs/component-library/tools/playground/1_UbRgnJ9/9/edit
不要忘记投票,并根据需要将其选择为最佳答案。
答案 2 :(得分:0)
<template>
<lightning-card variant="Narrow" title="Hello" icon-name="standard:account">
<lightning-input type="toggle" label="Name" onchange={displayStatus} ></lightning-input>
<lightning-card>
{displaytext}
</lightning-card>
</lightning-card>
</template>
=================================js=====================================
import { LightningElement, track } from 'lwc';
export default class ConditionalWebComponent extends LightningElement {
@track status;
@track displaytext= '';
displayStatus(event){
alert(event.target.checked);
if(event.target.checked === true){
this.displaytext = 'You are active';
}if(event.target.checked === false){
this.displaytext = 'You are inactive';
}
}
}
event.target.checked-将用于从复选框获取价值
答案 3 :(得分:0)
您需要在复选框上设置事件以跟踪行为,例如onclick
;在on方法内部,您可以看到event.target.checked
内部的值。这是示例代码:
复选框标签:
<lightning-input type="checkbox" onclick={hereIsTheMethod} label="checkbox" name="someName"></lightning-input>
JavaScript方法:
hereIsTheMethod(event){
console.log(event.target.checked);
}
答案 4 :(得分:0)
我弄清楚如何执行此操作的唯一方法是使用JavaScript添加checked
属性。
此示例将checked
属性手动添加到isChecked
的设置器中的DOM元素中。
JavaScript:
import { LightningElement, track } from 'lwc';
export default class MyComponent extends LightningElement {
@track _isChecked = false;
set isChecked(newValue) {
this._isChecked = newValue;
this.template.querySelector('lightning-input.cb').checked = newValue;
}
get isChecked() {
return this._isChecked;
}
toggleChecked() {
this.isChecked = !this.isChecked;
}
onChecboxChange(event) {
this.isChecked = event.target.checked;
}
}
HTML:
<template>
<lightning-input class="cb" type="checkbox" label="my checkbox" onchange={onChecboxChange}></lightning-input>
<br/>
<lightning-button label="Toggle Checkbox" onclick={toggleChecked}></lightning-button>
<br/>
Checked Value: {isChecked}
</template>
LWC游乐场中的示例:https://developer.salesforce.com/docs/component-library/tools/playground/1wDdErq4X/31/edit
执行此操作而不使用setter的另一种方法是,每当模板渲染/重新渲染时,都使用renderedCallback()
生命周期挂钩来调用this.template.querySelector('lightning-input.cb').checked = newValue;
之类的东西。但是,您需要确保跟踪检查状态的变量实际上已绑定到模板的某个位置,否则更改变量后模板可能不会重新呈现。