Я получаю данные из mysql database
в express
остальные API-приложения.Использование sequelize в качестве ORM.Когда значение mysql достигает значения BIT(1)
, sequelize возвращает instance of buffer object
.
{
"id": 4,
"ProductPrice": 12.25,
"ProductQuantityOnHand": 0,
"ProductCode": "P486",
"ProductName": "FirstProduct",
"ProductDescription": null,
"ProductActive": {
"type": "Buffer",
"data": [
1
]
},
"createdAt": "2019-02-02T11:27:00.000Z",
"updatedAt": "2019-02-02T11:27:00.000Z"
}
Как и здесь, product active BIT (1) и продолжение, возвращающее объект.
Как я могу получить boolean value instead of an object
?
Вот так.
{
"id": 4,
"ProductPrice": 12.25,
"ProductQuantityOnHand": 0,
"ProductCode": "P486",
"ProductName": "FirstProduct",
"ProductDescription": null,
"ProductActive": true,
"createdAt": "2019-02-02T11:27:00.000Z",
"updatedAt": "2019-02-02T11:27:00.000Z"
}