Why is mongoose changing date attributes's value?How do I format dates from Mongoose in Node.js?Which “href” value should I use for JavaScript links, “#” or “javascript:void(0)”?How to change an element's class with JavaScript?Compare two dates with JavaScriptSet a default parameter value for a JavaScript functionHow can I get query string values in JavaScript?Sort array of objects by string property valueHow do I get the current date in JavaScript?What is JSONP, and why was it created?Why does Google prepend while(1); to their JSON responses?How to format a JavaScript date
Is there reliable evidence that depleted uranium from the 1999 NATO bombing is causing cancer in Serbia?
Can European countries bypass the EU and make their own individual trade deal with the U.S.?
Can one use the present progressive or gerund like an adjective?
How do we separate rules of logic from non-logical constraints?
How to securely dispose of a smartphone?
How is this practical and very old scene shot?
Closest Proximity of Oceans to Freshwater Springs
What exactly did Ant-Man see that made him say that their plan worked?
Security Patch SUPEE-11155 - Possible issues?
Does a return economy-class seat between London and San Francisco release 5.28 tonnes of CO2 equivalents?
Sacrifice blocking creature before damage is dealt no longer working (MtG Arena)?
Can a stressful Wish's Strength reduction be cured early by a Greater Restoration spell?
Is there a legal way for US presidents to extend their terms beyond two terms of four years?
Why were the first airplanes "backwards"?
Who are these Discworld wizards from this picture?
Grant dbcreator only for databases matching prefix
Why wasn't ASCII designed with a contiguous alphanumeric character order?
What's the safest way to inform a new user of their password on an invite-only website?
Does a Hand Crossbow with the Repeating Shot Infusion still require a Free Hand to use?
Can I travel from Germany to England alone as an unaccompanied minor?
How can I deal with extreme temperatures in a hotel room?
Is it okay to fade a human face just to create some space to place important content over it?
I hit a pipe with a mower and now it won't turn
Journal standards vs. personal standards
Why is mongoose changing date attributes's value?
How do I format dates from Mongoose in Node.js?Which “href” value should I use for JavaScript links, “#” or “javascript:void(0)”?How to change an element's class with JavaScript?Compare two dates with JavaScriptSet a default parameter value for a JavaScript functionHow can I get query string values in JavaScript?Sort array of objects by string property valueHow do I get the current date in JavaScript?What is JSONP, and why was it created?Why does Google prepend while(1); to their JSON responses?How to format a JavaScript date
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have a Model that has a date attribute, I'm getting it's value from a post request. I have at least two problems:
- Mongoose is accepting this input as a date :
19124-012-030
- When I send only the year Mongoose fills the month and day and changes the year value.
I haven't tried anything yet, I don't have any validation in my schema, I'm relying only on the type proprety (type: Date
)
Schema:
const mySchema = mongoose.Schema(
...
date:
type: Date
,
);
Form:
<input id="dat" type="text" name="date" placeholder="date (yyyy-mm-dd)">
Route handler:
app.post("/api/exercise/add", function(req, res, next)
User
.findById(req.body.userId)
.exec()
.then(function(user)
return Promise.all([user, new Exercise(
description: req.body.description,
duration: req.body.duration,
date: req.body.date, //BUG: must add validations
user: user
).save()]);
)
.then(function([user, exercise])
user.exercises.push(exercise);
return user.save();
)
.then(user => res.json( status: 201, exercises: user.exercises ))
.catch(err => next(err))
);
(1)The expected output of 19124-012-030
is to raise an error, instead the object gets persisted with : 19124-12-29T23:00:00.000+00:00
(2)When the input is only 11111
the object is persisted with : 11110-12-31T23:00:00.000+00:00
Update
The issue is on. I have not found anything similar. Nothing is provided in MongoDB's documentation to help understand the problem.
javascript node.js mongoose mongoose-schema
add a comment |
I have a Model that has a date attribute, I'm getting it's value from a post request. I have at least two problems:
- Mongoose is accepting this input as a date :
19124-012-030
- When I send only the year Mongoose fills the month and day and changes the year value.
I haven't tried anything yet, I don't have any validation in my schema, I'm relying only on the type proprety (type: Date
)
Schema:
const mySchema = mongoose.Schema(
...
date:
type: Date
,
);
Form:
<input id="dat" type="text" name="date" placeholder="date (yyyy-mm-dd)">
Route handler:
app.post("/api/exercise/add", function(req, res, next)
User
.findById(req.body.userId)
.exec()
.then(function(user)
return Promise.all([user, new Exercise(
description: req.body.description,
duration: req.body.duration,
date: req.body.date, //BUG: must add validations
user: user
).save()]);
)
.then(function([user, exercise])
user.exercises.push(exercise);
return user.save();
)
.then(user => res.json( status: 201, exercises: user.exercises ))
.catch(err => next(err))
);
(1)The expected output of 19124-012-030
is to raise an error, instead the object gets persisted with : 19124-12-29T23:00:00.000+00:00
(2)When the input is only 11111
the object is persisted with : 11110-12-31T23:00:00.000+00:00
Update
The issue is on. I have not found anything similar. Nothing is provided in MongoDB's documentation to help understand the problem.
javascript node.js mongoose mongoose-schema
Possible duplicate of stackoverflow.com/questions/7443142/…
– tnkh
Mar 26 at 7:05
@tnkh I don't think the problem has anything to do with formatting the date object.
– Moad Ennagi
Apr 2 at 12:15
add a comment |
I have a Model that has a date attribute, I'm getting it's value from a post request. I have at least two problems:
- Mongoose is accepting this input as a date :
19124-012-030
- When I send only the year Mongoose fills the month and day and changes the year value.
I haven't tried anything yet, I don't have any validation in my schema, I'm relying only on the type proprety (type: Date
)
Schema:
const mySchema = mongoose.Schema(
...
date:
type: Date
,
);
Form:
<input id="dat" type="text" name="date" placeholder="date (yyyy-mm-dd)">
Route handler:
app.post("/api/exercise/add", function(req, res, next)
User
.findById(req.body.userId)
.exec()
.then(function(user)
return Promise.all([user, new Exercise(
description: req.body.description,
duration: req.body.duration,
date: req.body.date, //BUG: must add validations
user: user
).save()]);
)
.then(function([user, exercise])
user.exercises.push(exercise);
return user.save();
)
.then(user => res.json( status: 201, exercises: user.exercises ))
.catch(err => next(err))
);
(1)The expected output of 19124-012-030
is to raise an error, instead the object gets persisted with : 19124-12-29T23:00:00.000+00:00
(2)When the input is only 11111
the object is persisted with : 11110-12-31T23:00:00.000+00:00
Update
The issue is on. I have not found anything similar. Nothing is provided in MongoDB's documentation to help understand the problem.
javascript node.js mongoose mongoose-schema
I have a Model that has a date attribute, I'm getting it's value from a post request. I have at least two problems:
- Mongoose is accepting this input as a date :
19124-012-030
- When I send only the year Mongoose fills the month and day and changes the year value.
I haven't tried anything yet, I don't have any validation in my schema, I'm relying only on the type proprety (type: Date
)
Schema:
const mySchema = mongoose.Schema(
...
date:
type: Date
,
);
Form:
<input id="dat" type="text" name="date" placeholder="date (yyyy-mm-dd)">
Route handler:
app.post("/api/exercise/add", function(req, res, next)
User
.findById(req.body.userId)
.exec()
.then(function(user)
return Promise.all([user, new Exercise(
description: req.body.description,
duration: req.body.duration,
date: req.body.date, //BUG: must add validations
user: user
).save()]);
)
.then(function([user, exercise])
user.exercises.push(exercise);
return user.save();
)
.then(user => res.json( status: 201, exercises: user.exercises ))
.catch(err => next(err))
);
(1)The expected output of 19124-012-030
is to raise an error, instead the object gets persisted with : 19124-12-29T23:00:00.000+00:00
(2)When the input is only 11111
the object is persisted with : 11110-12-31T23:00:00.000+00:00
Update
The issue is on. I have not found anything similar. Nothing is provided in MongoDB's documentation to help understand the problem.
javascript node.js mongoose mongoose-schema
javascript node.js mongoose mongoose-schema
edited Apr 2 at 12:12
Moad Ennagi
asked Mar 25 at 14:11
Moad EnnagiMoad Ennagi
5074 silver badges10 bronze badges
5074 silver badges10 bronze badges
Possible duplicate of stackoverflow.com/questions/7443142/…
– tnkh
Mar 26 at 7:05
@tnkh I don't think the problem has anything to do with formatting the date object.
– Moad Ennagi
Apr 2 at 12:15
add a comment |
Possible duplicate of stackoverflow.com/questions/7443142/…
– tnkh
Mar 26 at 7:05
@tnkh I don't think the problem has anything to do with formatting the date object.
– Moad Ennagi
Apr 2 at 12:15
Possible duplicate of stackoverflow.com/questions/7443142/…
– tnkh
Mar 26 at 7:05
Possible duplicate of stackoverflow.com/questions/7443142/…
– tnkh
Mar 26 at 7:05
@tnkh I don't think the problem has anything to do with formatting the date object.
– Moad Ennagi
Apr 2 at 12:15
@tnkh I don't think the problem has anything to do with formatting the date object.
– Moad Ennagi
Apr 2 at 12:15
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55339766%2fwhy-is-mongoose-changing-date-attributess-value%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55339766%2fwhy-is-mongoose-changing-date-attributess-value%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Possible duplicate of stackoverflow.com/questions/7443142/…
– tnkh
Mar 26 at 7:05
@tnkh I don't think the problem has anything to do with formatting the date object.
– Moad Ennagi
Apr 2 at 12:15