我正在尝试返回特定的状态代码,例如,409 Conflict。我使用了Model#save docs
编辑:我不是在尝试解决错误,而是故意的。
根据文档,回调有三个参数:err,product和numAffected。
编辑:我写错了这个代码,我编辑了。无论哪种方式,我都得到了Ryan的优秀答案。
app.post('/skill', (req, res) => {
const skill = new Skill({some_duplicate_object});
skill.save((err, product, numAffected) => {
console.log("Error: ", err);
});
不是我的console.log,在Mocha测试cli中,我收到错误:
(node:19760) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 5): ValidationError: Path `name` is required.
通过玩耍和剪切运气,我做到了这一点:这不是mongoose docs,也不是我写这篇文章的主要原因。
app.post('/skill', (req, res) => {
const skill = new Skill({});
skill.save()
.then((err, product, numAffected) => {
console.log("Nothing displayed here");
}, (err) => {
console.log(err.errors);
});
即使这不在文档中,它也会显示我想要的错误。作为一个真正试图更多地使用官方文档的人,我发现很难理解究竟发生了什么。为什么这样做,如果它在文档中,这些信息将在哪里?
{ name:
{ MongooseError: Path `name` is required.
at ValidatorError (/home/codeamend/Coding/projects/portfolio/work/CodeAmend.Com/backend/node_modules/mongoose/lib/error/validator.js:24:11)
at validate (/home/codeamend/Coding/projects/portfolio/work/CodeAmend.Com/backend/node_modules/mongoose/lib/schematype.js:706:13)
at /home/codeamend/Coding/projects/portfolio/work/CodeAmend.Com/backend/node_modules/mongoose/lib/schematype.js:752:11
at Array.forEach (native)
at SchemaString.SchemaType.doValidate (/home/codeamend/Coding/projects/portfolio/work/CodeAmend.Com/backend/node_modules/mongoose/lib/schematype.js:712:19)
at /home/codeamend/Coding/projects/portfolio/work/CodeAmend.Com/backend/node_modules/mongoose/lib/document.js:1408:9
at _combinedTickCallback (internal/process/next_tick.js:73:7)
at process._tickCallback (internal/process/next_tick.js:104:9)
message: 'Path `name` is required.',
name: 'ValidatorError',
properties:
{ type: 'required',
message: 'Path `{PATH}` is required.',
validator: [Function],
path: 'name',
value: undefined },
kind: 'required',
path: 'name',
value: undefined,
reason: undefined } }
额外信息:
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"request": "^2.81.0",
"supertest": "^3.0.0"
},
"dependencies": {
"body-parser": "^1.17.1",
"express": "^4.15.2",
"mongoose": "^4.9.2"
}
答案 0 :(得分:1)
你的问题有两个问题,你得到的两个错误都告诉你完全出了什么问题。你的麻烦的根源是缺乏理解(不试图挑选你)。这有点像你是电子学的初学者一样,我告诉你,管子有不正确的偏见,你说"我不明白" - 好吧,你需要了解电子管,因为我刚刚向你描述了电路的确切问题。
<强> 1。承诺错误 - UnhandledPromiseRejectionWarning: Unhandled promise rejection...
。这不能说明。承诺是1)已解决或2)被拒绝。如果你未能及时处理&#34;被拒绝的案件,你会得到一个错误。处理被拒绝的承诺可以采用以下两种方式之一:
// pass a 2nd function to `.then()`:
somePromise.then(function (result) {
// promise was "resolved" successfully
}, function (err) {
// Promise was "rejected"
});
// use `.catch()` - this is preferred in my opinion:
somePromise.then(function (result) {
// promise was "resolved" successfully
}).catch(function (err) {
// Promise was "rejected"
});
使用上述任一方案意味着您已经处理过&#34;承诺拒绝正确。
<强> 2。数据库验证 - Path 'name' is required.
。这实际上意味着你有一个名为&#34; name&#34;这是必需的(意思是,必须有一个值)。所以看看你的代码非常明显:
const skill = new Skill({});
skill.save() //-> results in error
通过在保存之前添加所有必需的数据来解决此问题:
const skill = new Skill({ name: "Jason" });
skill.save() //-> yay, no error
答案 1 :(得分:0)
你没有处理承诺拒绝。
改变这个:
public function PdfView(Request $request, $patient_id)
{
$patients = Patient::where('id', $patient_id)->first();
$pdf = PDF::loadView('pdfview', ['patients'=>$patients]);
return $pdf->download('pdfview.pdf');
}
到此:
.then((err, product, numAffected) => {
console.log("Error: ", err);
});
当然要改变回调中发生的事情,无论你需要什么。
有关未处理拒绝的更多常规信息,请参阅此答案: