gpt4 book ai didi

javascript - 当 observable 更新时,所选选项不会更新,但 optionsValue 会更新

转载 作者:行者123 更新时间:2023-11-30 14:35:32 24 4
gpt4 key购买 nike

在以下代码中,产品(用 productVM 表示)有一个可观察属性 (productName),其中包含其两种语言(英语和法语)的名称。

添加 cartItem 并选择产品后,我希望在单击“更改语言”按钮时更新其显示名称(例如,如果选择“门”,并且然后单击“更改语言”,显示的名称应该是法语版本(就是英文单词加上法语后缀“eux”)。

但它不起作用:选项确实发生了变化,但所选选项已更改为标题选项。

需要更改/添加什么来修复它?

var handlerVM = function () {
var self = this;
self.cartItems = ko.observableArray([]);
self.availableProducts = ko.observableArray([]);
self.language = ko.observable();
self.init = function () {
self.initProducts();
self.language("english");
}
self.initProducts = function () {
self.availableProducts.push(
new productVM("Shelf", ['White', 'Brown']),
new productVM("Door", ['Green', 'Blue', 'Pink']),
new productVM("Window", ['Red', 'Orange'])
);
}
self.getProducts = function () {
return self.availableProducts;
}
self.getProductName = function (product) {
if (product != undefined) {
return self.language() == "english" ?
product.productName().english : product.productName().french;
}
}
self.getProductColours = function (selectedProductName) {
selectedProductName = selectedProductName();
// if not caption
if (selectedProductName) {
var matched = ko.utils.arrayFirst(self.availableProducts(), function (product) {
return (self.language() == "english" ? product.productName().english : product.productName().french) == selectedProductName;
});
return matched.availableColours;
}
}
self.addCartItem = function (a, b, c, d) {
self.cartItems.push(new cartItemVM());
}
self.changeLanguage = function () {
self.language() == "english" ?
self.language("french") :
self.language("english");
}
}
self.productVM = function (name, availableColours) {
var self = this;
self.productName = ko.observable({
english: name,
french: name + "eux",
});
self.availableColours = ko.observableArray(availableColours);
}
self.cartItemVM = function () {
var self = this;
self.cartItemName = ko.observable();
self.cartItemColour = ko.observable();
}

var handler = new handlerVM();
handler.init();
ko.applyBindings(handler);
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.4.2/knockout-min.js"></script>
<div>
<div data-bind="foreach: cartItems">
<div>
<select data-bind="options: $parent.getProducts(),
optionsText: function (item) { return $parent.getProductName(item); },
optionsValue: function (item) { return $parent.getProductName(item); },
optionsCaption: 'Choose a product',
value: cartItemName"
>
</select>
</div>
<div>
<select data-bind="options: $parent.getProductColours(cartItemName),
optionsText: $data,
optionsCaption: 'Choose a colour',
value: cartItemColour,
visible: cartItemName() != undefined"
>
</select>
</div>
</div>
<div>
<button data-bind="text: 'add cart item', click: addCartItem" />
<button data-bind="text: 'change language', click: changeLanguage" />
</div>
</div>

最佳答案

当您更改选择的选项 时,您的问题就会出现。在更改期间,您的 value 绑定(bind)可观察对象 cartItemName 包含 English 字符串。例如:。更改语言后,没有一个 option 会为其 optionsValue 表达式返回 Door,从而清除 value 一共。

最好的解决方案是存储对实际 View 模型的引用,而不仅仅是其字符串名称。这确实需要您移动一些其他的零碎部分,因为您要手动更新很多。

变化的起点:

// Remove
self.cartItemName = ko.observable();

// Add
self.cartItem = ko.observable();

// Change
<select data-bind="...
value: cartItem
" />

在工作片段中,进行了一些其他更改以使我的工作更轻松:

var handlerVM = function () {
var self = this;

self.cartItems = ko.observableArray([]);
self.language = ko.observable("english");
self.availableProducts = ko.observableArray([
new productVM("Shelf", ['White', 'Brown']),
new productVM("Door", ['Green', 'Blue', 'Pink']),
new productVM("Window", ['Red', 'Orange'])
]);

self.productNameFor = function(product) {
return product.productName()[self.language()];
};

self.addCartItem = function (a, b, c, d) {
self.cartItems.push(new cartItemVM());
}

self.changeLanguage = function () {
self.language() == "english" ?
self.language("french") :
self.language("english");
}
}
self.productVM = function (name, availableColours) {
var self = this;
self.productName = ko.observable({
english: name,
french: name + "eux",
});
self.availableColours = ko.observableArray(availableColours);
}

self.cartItemVM = function () {
var self = this;
self.cartItem = ko.observable();
self.cartItemColour = ko.observable();
}

ko.applyBindings(new handlerVM());
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.4.2/knockout-min.js"></script>
<div>
<div data-bind="foreach: cartItems">
<div>
<select data-bind="options: $root.availableProducts,
optionsText: $root.productNameFor,
optionsCaption: 'Choose a product',
value: cartItem"
>
</select>
</div>
<div data-bind="with: cartItem">
<select data-bind="options: availableColours,
optionsCaption: 'Choose a colour',
value: $parent.cartItemColour"
>
</select>
</div>
</div>
<div>
<button data-bind="text: 'add cart item', click: addCartItem" />
<button data-bind="text: 'change language', click: changeLanguage" />
</div>
</div>

关于javascript - 当 observable 更新时,所选选项不会更新,但 optionsValue 会更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50488571/

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