1 let cart_idsAll = ""; 2 //從對象中遍歷拿到指定屬性 3 selectArrey.value.forEach(function (item) { 4 //存為字符串 5 (cart_idsAll as any) += (item as any).goods_id + ","; 6 }); 7 //將字符串的最后一","刪除,並根據","轉為數組 8 (cart_idsAll as any) = cart_idsAll.substring(0,cart_idsAll.length-1).split(","); 9 if (cart_idsAll != "") { 10 console.log("cart_idsAll", cart_idsAll); 11 } else { 12 ElMessage({ 13 message: "沒有選中任何訂單!", 14 type: "warning", 15 });