2017-12-06 11 views
0

クッキーに配列を作成しようとしています。クリックごとに更新することができます。私はクッキーを作成しましたが、クッキーに複数の値を追加する方法はありません。 私のコードは次のとおりです。React Naticeのクロスクッキーに複数の値を追加する方法

import cookie from 'cross-cookie'; 
    handlePressProduct(id) { 
    cookie.set('cart', { product_id: 1234 ,qty: 1,customer_id: isuerID},{product_id: id ,qty: 2}) 
     .then(() => console.log('cookie set!')); 


     cookie.get('cart') 
     .then(value => alert(value)); 
    } 

私はクッキーに複数の値を使用することができますか?

答えて

0

私はこれを試して、うまく動作しています。

var data = {}; 
     data[id] = {product_id: id ,qty: 1,customer_id: isuerID}; 

     cookie.set(data) 
     .then(() => console.log('cookies set!')); 
});  

    cookie.getAll().then(function(cookies){ 

    alert(JSON.stringify(cookies)) 

    }) 
関連する問題