在egg.js中:

    1. const UserSchema = new Schema({
    2. userId: { type: String },
    3. userName: { type: String },
    4. userPwd: { type: String },
    5. cartList: [
    6. {
    7. ...goodsItem,
    8. productNum:{
    9. type:Number,
    10. default:1
    11. }
    12. }
    13. ],
    14. });

    goodsItem.js

    1. module.exports = goodsItem = {
    2. productId: { type: String },
    3. productName: { type: String },
    4. salePrice: { type: Number },
    5. productImage: { type: String },
    6. }

    7 创建schema的技巧 - 图1