1

計算されたオブザーバブルを作成してページに表示しようとしていますが、以前にこの方法で実行したことがありますが、ノックアウトが変更されたかどうか疑問に思い始めています-totalAmountのバインディングを除いてすべてが機能します-何らかの理由で変更されません.. 。何か案は?

私のモデルは次のとおりです。

var cartItem = function(item){
    this.itemName = item.title;
    this.itemPrice = item.price;
    this.itemID = item.id;
    this.count=0;
}
var cartModel = {
    self:this,
    footers:ko.observableArray([{title:'item1',text:'this is item1 text',image:'images/products/items/item1.png',price:15.99,id:1},
    {title:'item2',text:'this is item2 text',image:'images/products/items/item2.png',price:25.99,id:2},
    {title:'item3',text:'this is item3 text',image:'images/products/items/item3.png',price:55.99,id:3},
    {title:'item4',text:'this is item4 text',image:'images/products/items/item4.png',price:5.99,id:4},

]),
cart:ko.observableArray([]),
addToCart:function(){
if(cartModel.cart().length>0){
        for(var i=0;i<cartModel.cart().length;i++){
            if(this.id==cartModel.cart()[i].itemID){
                cartModel.cart()[i].count += 1;
            }
            else{
                cartModel.cart().push(new cartItem(this));
            }
        }
    }else{
        cartModel.cart().push(new cartItem(this));
    }
    console.log(cartModel.cart().length);  
}
}
this.cartModel.totalAmount=ko.computed(function(){
    return this.cart().length;    
},this.cartModel);
ko.applyBindings(cartModel);

関連する HTML は次のとおりです。

<div data-bind="template:{name:'footerTemplate',foreach:cartModel.footers}">
    <script type="text/html" id="footerTemplate">
        <div class="row">
            <span class="span2"><h3 data-bind="text: title"></h3></span>
            <span class="span2"><img data-bind="attr:{src: image}"/></span>
            <span class="span5" data-bind="text:text"></span>
            <span class="span1" data-bind="text:price"></span>
            <spand class="span2"><button data-bind="click:$parent.addToCart">add</button></span>
        </div>
    </script>
</div>
<div class="row">
    <span class="span2" data-bind="text:totalAmount"></span>
</div>
4

1 に答える 1

1

observableArray ラッパーではなく、内部配列でpushメソッドを呼び出しているため、変更が通知されることはありません。

つまり、次の代わりに:

cartModel.cart().push(new cartItem(this));

簡単に使用します:

cartModel.cart.push(new cartItem(this));

詳細については、observableArray の公式ドキュメントを参照してください。特に、observableArray からの情報の読み取りと observableArray操作のセクションを参照してください。

于 2013-05-14T12:43:09.380 に答える