loopbackio / loopbackio/loopback-datasource-juggler
[BUG] create helper function ignores the id property when it's equal to 0.
Chưa có ai nhận issue này.
- Ngôn ngữ chính
- JavaScript
- Star
- 282
- Fork
- 366
- Merge trung bình
- 17 giờ 4 phút
- Pull request đã merge (30 ngày)
- 10
Mô tả
Description :
Create call on a loopback model returns a property id as a response, in case where the property id starts from 0 it is removed from response. This is because the create function( dao.js line no 378) which gets the id as a callback on the create call in a loopback model, does not accepts 0 as an id.
Code snippet from dao.js
if id is 0 it is skipping the if block
function createCallback(err, id, rev) {
if (id) {
obj.__data[_idName] = id;
defineReadonlyProp(obj, _idName, id);
}
We have a scenario where the id starts from 0, and this is causing the id property for our 0th element to be removed from the response.
Steps to reproduce :
- Model which has a property id which starts from 0.
- Call the api to create which will have the id (starting from 0) in response.
- Response will be missing the id property for the first call where id is 0, and it'll add the id property in response starting from id as 1 onwards.
Current Response Behaviour :
id is removed when its value is equal to 0
{
"property1" : "property1",
"property2" : "property2"
}
Expected Results :
{
"id" : 0
"property1" : "property1",
"property2" : "property2"
}
Hướng dẫn đóng góp
Bắt đầu từ đâu
- Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
- Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
- Fork repository và làm thay đổi trên một nhánh.
- Mở pull request có tham chiếu số hiệu của issue.
Hướng nghiên cứu
Bắt đầu tại hàm createCallback trong dao.js, khoảng dòng 378, và theo dõi cách callback id được gán cho đối tượng được tạo. Tái hiện một lệnh gọi create với id bằng 0, sau đó bổ sung coverage cho phản hồi dự kiến và xác minh rằng các id từ 0 trở lên được giữ nguyên.
Do mô hình lập chỉ mục viết ra từ nội dung của issue.
Đánh giá
- Công nghệ
- javascript
- Lĩnh vực
- databases
- Loại issue
- Lỗi
- Độ khó
- 2/5
- Thời gian dự kiến
- 1-3 giờ
- Mức độ hoạt động
- Đình trệ
- Độ rõ ràng
- Đặc tả rõ ràng
- Mức phù hợp với người mới
- 55/100