0
我試着去寫1.增加了一個項目,以可觀察到的陣列和2替換項目,如果它已經在陣列功能添加和可觀察到的陣列替換項目
self.addNotification = function (name, availability, note) {
//see if we already have a line for this product
var matchingItem = self.notifications.indexOf(name);
if (matchingItem !== undefined) {
self.notifications.replace(self.notifications()[index(matchingItem)],
new Notification(self, name, availability, note));
}
else {
self.notifications.push(new Notification(self, name, availability, note));
}
};
什麼時在存在功能我做錯了?
問候安德斯
好的,謝謝,我已將undefined更改爲-1 ...但它只是不斷添加項目到數組。 – mupersan82