gpt4 book ai didi

arrays - 如何将数组呈现为单选按钮列表?

转载 作者:行者123 更新时间:2023-12-04 03:09:14 25 4
gpt4 key购买 nike

我想遍历我在 Javascript 中定义的数组并呈现单选按钮列表。我的代码目前不起作用,如下所示(也在 jsfiddle 上):

<div data-bind="foreach: options" >
<div>
<input type="radio" name="optionsGroup" data-bind="checked: selected" />
<span data-bind="text: label"></span>
</div>
</div>

var optionsList = [
{"value": "a","label": "apple"},
{"value": "b","label": "banana"},
{"value": "c","label": "carrot"}
];
function viewModel() {
var self = this;
self.options = optionsList;
self.selected = ko.observable("a");
self.selected.subscribe(function(newValue) {
alert("new value is " + newValue);
});
}
ko.applyBindings(new viewModel());

如果我的数组是 html 的一部分,那么它可以正常工作,请参阅此(或 jsfiddle):

<div>
<input type="radio" name="optionsGroup" value="a" data-bind="checked: selected" />Apple
</div>
<div>
<input type="radio" name="optionsGroup" value="b" data-bind="checked: selected" />Banana
</div>
<div>
<input type="radio" name="optionsGroup" value="c" data-bind="checked: selected" />Carrot
</div>
<div data-bind="text: selected">
</div>

function viewModel() {
var self = this;
self.selected = ko.observable("a");
self.selected.subscribe(function(newValue) {
alert("new value is " + newValue);
});
}
ko.applyBindings(new viewModel());

我通过在我的 javascript 中生成所有 html 并使用复选框来实现它,但我很难使用 foreach 迭代器生成一组单选按钮。

有没有人得到像我第一个工作的例子?

最佳答案

这是执行此操作的一种方法。请注意 attr绑定(bind)应该在 checked 之前捆绑。

var optionsList = [
{"value": "a", "label": "apple"},
{"value": "b", "label": "banana"},
{"value": "c", "label": "carrot"}
];

function viewModel() {
this.options = optionsList;
this.selected = ko.observable("a");
}

ko.applyBindings(new viewModel());
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.2.0/knockout-min.js"></script>

<h3>Fruits</h3>
<div data-bind="foreach: options" >
<label>
<input type="radio"
name="optionsGroup"
data-bind="attr: {value: value}, checked: $root.selected" />
<span data-bind="text: label"></span>
</label>
</div>

<h3>Selected value:</h3>
<pre data-bind="text: ko.toJSON($root.selected)"></pre>

关于arrays - 如何将数组呈现为单选按钮列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8920550/

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