当前代码
async onPressAdd() {
// at this moment, items is an array and shop is an object
db.storeSale(items, shop);
}
在不同的文件中
storeSale = async ({ items,shop }) => {
console.log(items); // undefined
console.log(shop); // not object
}
我试图传递一个数组和一个对象作为参数,但它不像上面的代码那样工作。
我希望将项目作为数组接收,并将商店作为对象。
如果您能给我任何建议,我将不胜感激。