- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个应用程序,我想将评论推送到单个 id 页面(显示露营地),并在数组中传递一个值。我用来表达和 Mongoose 。
错误
UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): ValidationError: validation failed: Cast to [undefined] failed for value...
这是要显示的页面模型:
模型/campground.js
var mongoose = require("mongoose");
var campgroundSchema = new mongoose.Schema({
name: String,
image: String,
description: String,
comments: [{
type: mongoose.Schema.Types.ObjectId,
ref: "Comment"
}]
});
module.exports = mongoose.model("Campground", campgroundSchema);
campgroundSchema 引用 Comment 模型:
models/comment.js
var mongoose = require("mongoose");
var commentSchema = new mongoose.Schema({
text: String,
author: String
});
module.exports = mongoose.model("Comment", commentSchema);
两者都用于创建评论路由,通过 id 找到一个露营地,然后创建一个评论从表单中检索数据,试图将该评论推送到先前创建的露营地的评论数组中,并保存:
app.js
app.post("/campgrounds/:id/comments", function (req, res) {
Campground.findById(req.params.id, function (err, campground) {
if (err) {
console.log(err);
res.redirect("/campgrounds");
} else {
Comment.create(req.body.comment, function (err, comment) {
if (err) {
console.log(err);
} else {
campground.comments.push(comment);
campground.save();
res.redirect("/campgrounds/" + campground._id);
console.log(req.body.comment);
}
});
}
});
});
这是“添加新评论”表单的代码:
comments/new.ejs
<div class="container">
<div class="row">
<h1 style="text-align: center;">Add a new Comment to <%= campground.name %></h1>
<div style="width: 30%; margin:25px auto;">
<form action="/campgrounds/<%= campground._id %>/comments" method="POST">
<div class="form-group">
<input class="form-control" type="text" name="comment[text]" placeholder="text">
</div>
<div class="form-group">
<input class="form-control" type="text" name="comment[author]" placeholder="author">
</div>
<div class="form-group">
<button class="btn btn-lg btn-primary btn-block">Submit!</button>
</div>
</form>
<a href="/campgrounds">Go Back</a>
</div>
</div>
</div>
这是“show campground”页面:
campgrounds/show.ejs
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6">
<h1><%= campground.name %></h1>
<div class="...">
<img src="<%= campground.image %>" class="media-object">
<p><%= campground.description %></p>
<p><a class="btn btn-success" href="/campgrounds/<%= campground._id %>/comments/new">Add New Comment</a></p>
<% campground.comments.forEach(function(comment) {%>
<p><strong><%= comment.text %></strong> - <%= comment.author %></p>
<% })%>
<a href="/campgrounds">Go Back</a>
</div>
</div>
</div>
</div>
路线正确重定向到“show campground”页面,但没有新评论添加到循环中。我在控制台中有一个 Node 警告:
(node:1940) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 2):
ValidationError: Campground validation failed: comments: Cast to [undefined] failed for value
"[{
"_id":"5a55f5afd9bf5c0794ca7220",
"text":"previously existing comment",
"author":"first author",
"__v":0
}]"
at path "comments"
请注意记录的评论是已有的评论,表单提交的新评论只记录因为 console.log(req.body.comment)
一个例子:
{ text: 'lortem ipsum', author: 'nick beer' }
我该如何解决这个问题?
编辑:多亏了 JavaEvgen,我尝试了嵌套架构,应用程序在不更改其他行的情况下运行。但似乎我无法使用引用的模式。错误在哪里?
最佳答案
最简单的解决方案是使用嵌套架构来保存您的营地和评论,如下所示:
var mongoose = require("mongoose");
var comment = new mongoose.Schema({
text: String,
author: String
});
var campgroundSchema = new mongoose.Schema({
name: String,
image: String,
description: String,
comments: [comment]
});
module.exports = mongoose.model("Campground", campgroundSchema);
在这种方法中,您可以像这样保存您的评论:
Campground.findById(req.params.id, function(err, campground) {
if (err) throw err;
campground.comments.push(req.body.comment);
campgound.save(function(err, result){
if(err) throw err;
res.redirect("/campgrounds/" + campground._id);
});
});
或者你也可以尝试避免使用 Mongoose 的 .create 函数,而是使用 .save 来创建你的评论,如下所示:
var comment = new Comment(req.body.comment);
comment.save(your_callback_here);
除此之外,当我使用您最初尝试的方法时,我检查了自己的解决方案,发现了一些小差异。
首先,在我的案例中,我还有一个从 Comment 架构到 Movie 的反向引用,所以我认为您可以尝试将它也添加到您的 Comment 架构中,如下所示:
var commentSchema = new mongoose.Schema({
text: String,
author: String,
campground: { type: mongoose.Schema.Types.ObjectId, ref: 'Campground' }
});
在此之后,我认为您必须先保存您的评论,这样它才能从 mongoDB 获得一个 _id,然后才能将这个 id 推送到 campground 对象。实际上,您使用 .create 以正确的顺序执行此操作,但由于没有任何效果,我认为您可以尝试这样的操作:
var comment = new Comment(req.body);
comment.campground = req.campground._id;
comment.save(function(err, comment){
if(err) return next(err);
comment.campground.comments.push(comment);
comment.campground.save(function(err, campground){
if(err) return next(err);
res.redirect("/campgrounds/" + campground._id);
});
});
关于javascript - mongoose .create 给 node.js "ValidationError: validation failed: Cast to [undefined] failed for value...",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48186787/
“Fail Early”是什么意思,在什么情况下这种方法最有用,你什么时候会避免这种方法? 最佳答案 本质上,快速失败 (又名 尽早失败 )是对您的软件进行编码,使得 当出现问题时,软件会尽快并尽可能
/* * 115200. Connect GPIO 0 of your ESP8266 to VCC and reset the board */ #include #include #inc
安装并注册 gitlab-runner 后,当我运行时 gitlab-runner start我收到此错误消息。这是什么原因? Runtime platform
我一直在尝试Windows Server 2016 TP5上的Windows容器。突然我在运行带有端口映射选项-p 80:80的容器时开始出错 c:\>docker run -it -p 80:80
我一直在关注 Hyperledger Fabric Multi-Org setup 的教程,我能够成功地做到这一点。现在我想根据我想要的组织名称对其进行自定义,并且在尝试连接网络时遇到以下错误。希望有
所以我不知道为什么这个测试失败了。当我运行 repl 中的语句时,一切似乎都正常工作,但 fiveam 测试失败。 以下要点中有一个测试用例:https://gist.github.com/Puerc
我安装了 Android Studio 1.2.1.1、Gradle 版本 2.2.1 和 Android 插件版本 1.2.3。我试图创建一个简单的 hello world 项目,它给了我一个构建失
我正在尝试设置一个简单的 WebTestCase,它使用 Symfony 4(和 "phpunit/phpunit": "^6.5")。但是,测试失败: Failed to start the ses
我已经使用 git clone 在本地克隆了一个包含 Vue 项目的 git 存储库. 然后我跑了npm install安装依赖项并获得 node_modules文件夹。 正在运行 npm run s
我有:http://windows.github.com/ 我当前的项目有大约 20k 个文件,大约 150MB(并且不说它有多慢而且我现在什么也做不了)它甚至不允许我提交!我收到此错误:提交失败:无
我正在使用 RxAndroidBle 库开发一个应用程序,该库大约每 30 秒定期执行 BLE 扫描,每分钟左右执行一些 BLE 操作。几个小时后,通常在 5 到 24 小时之间,扫描停止工作。每次应
每次我尝试使用 Pycharm 推送 GitHub 中的存储库时,它都会失败。 Push failed: fatal: Authentication failed for 'https://githu
此外,管理内置“管理结构”(如标题中的结构)的 Resque 的最佳实践是什么?我应该用 jedis.del(String key) 或类似的东西清除它们吗? 最佳答案 resque:failed 是
想象这样一种场景,我们想要在对“foo”和“bar”的并发请求成功完成后做一些事情,或者如果其中一个或两个失败则报告错误: $.when($.getJSON('foo'), $.getJSON('ba
这就是我所做的: 我使用的是 Windows XP SP3 我已经安装了 Python 2.7.1。 我下载了instantclient-basic-nt-11.2.0.3.0.zip,解压后放入C:
我已经设置了一个 vfsstream block 设备,我正在尝试对其调用 file_get_contents()。然而,对 vfsStreamWrapper::stream_open 的调用失败,因
我正在尝试在我的 React 应用程序中使用文件上传功能,但遇到了问题。当我尝试上传第一张图片时,它工作得很好。文件资源管理器对话框关闭并显示我的图片。用我的文件资源管理器中的另一张图片覆盖图片也可以
目标:将我的本地 mongodb 数据迁移到 mongodb atlas 集群。 尝试: 1.将本地数据导出为json。 2.导入json到集群。 操作系统:Linuxmint 19.1 Cinnam
我一直在从事一个需要在服务器(托管在 GCE 上)和多个客户端之间进行一些网络连接的项目。我创建了一个 Compute Engine 实例来运行 Python 脚本,如以下视频所示:https://w
我正在尝试使用 sqlx crate 和 Postgres 数据库连接到 Rust 中的数据库。 main.rs: use dotenv; use sqlx::Pool; use sqlx::PgPo
我是一名优秀的程序员,十分优秀!