- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
您好,我正在尝试通过 mongoose 创建一个新的子文档,但是当我在 Postman 中执行 POST 方法时,收到以下消息:
{
"message": "Location validation failed",
"name": "ValidationError",
"errors": {
"reviews.1.reviewText": {
"message": "Path `reviewText` is required.",
"name": "ValidatorError",
"properties": {
"type": "required",
"message": "Path `{PATH}` is required.",
"path": "reviewText"
},
"kind": "required",
"path": "reviewText"
},
"reviews.1.rating": {
"message": "Path `rating` is required.",
"name": "ValidatorError",
"properties": {
"type": "required",
"message": "Path `{PATH}` is required.",
"path": "rating"
},
"kind": "required",
"path": "rating"
},
"reviews.1.author": {
"message": "Path `author` is required.",
"name": "ValidatorError",
"properties": {
"type": "required",
"message": "Path `{PATH}` is required.",
"path": "author"
},
"kind": "required",
"path": "author"
}
}
}
这是我的位置数据库架构:
var mongoose = require('mongoose');
var reviewSchema = new mongoose.Schema({
author: {type: String, required: true},
rating: {type: Number, required: true, min: 0, max: 5},
reviewText: {type: String, required: true},
createdOn: {type: Date, "default": Date.now}
});
var openingTimeSchema = new mongoose.Schema({
days: {type: String, required: true},
opening: String,
closing: String,
closed: {type: Boolean, required: true}
});
var locationSchema = new mongoose.Schema({
name: {type: String, required: true},
address: String,
rating: {type: Number, "default":0, min: 0, max: 5},
facilities: [String],
coords: {type: [Number], index:'2ndsphere'},
openingTimes: [openingTimeSchema],
reviews: [reviewSchema]
});
mongoose.model('Location', locationSchema);
这里 Controller 在 router.post('/locations/:locationid/reviews', ctrlReviews.reviewsCreate); 路由下启动:
//reviews.js
var mongoose = require('mongoose');
var Loc = mongoose.model('Location');
module.exports.reviewsCreate = function (req, res) {
var locationid = req.params.locationid;
if(locationid){
Loc
.findById(locationid)
.select('reviews')
.exec(
function(err, location){
if(err){
sendJsonResponse(res, 400, err);
} else{
console.log(location);
doAddReview(req, res, location);
}
}
);
} else{
sendJsonResponse(res, 400, {
"message" : "Not found, locationid required"
});
}
};
// START - Functions for review create //////////////////////////////////////
var doAddReview = function(req, res, location){
if(!location){
sendJsonResponse(res, 404, "locationid not found");
} else{
location.reviews.push({
author: req.body.author,
rating: req.body.rating,
reviewText: req.body.reviewText
});
location.save(function(err, location){
var thisReview;
if(err){
//sendJsonResponse(res, 400, err);
sendJsonResponse(res, 400, err);
} else{
updateAverageRating(location._id);
thisReview = location.reviews[location.reviews.length - 1];
sendJsonResponse(res, 201, thisReview);
}
});
}
};
var updateAverageRating = function(locationid){
console.log("Update rating average for", locationid);
Loc
.findById(locationid)
.select('reviews')
.exec(
function(err, location){
if(!err){
doSetAverageRating(location);
}
}
);
};
var doSetAverageRating = function(location){
var i, reviewCount, ratingAverage, ratingTotal;
if(location.reviews && location.reviews.length > 0){
reviewCount = location.reviews.length;
ratingTotal = 0;
for(i=0; i<reviewCount; i++){
ratingTotal = ratingTotal + location.reviews[i].rating;
}
ratingAverage = parseInt(ratingTotal / reviewCount, 10);
location.rating = ratingAverage;
location.save(function(err){
if(err){
console.log(err);
} else{
console.log("Average rating updated to", ratingAverage);
}
});
}
};
我发现执行 location.save 函数时会弹出错误。我正在从一本书中学习 MEAN Stack,因此您可以在这里下载本章的完整代码:https://github.com/simonholmes/getting-MEAN/tree/chapter-06
我尝试替换app_api/controllers文件夹中的locations.js和reviews.js文件的代码,但此时应用程序崩溃了,我猜是因为其他文件需要更新。所以我被困在那里。
有人知道为什么会发生这种情况吗?
提前致谢!
最佳答案
关于node.js - 消息: path is required,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38075763/
这是我的作业 What does echo PATH $PATH \$PATH do? 我不知道它是如何工作的。 echo PATH打印“路径” $PATH创建一个“PATH”变量......也许?
我想弄清楚两者之间的区别 路径=路径+[节点1] 路径+=[节点1] path.append(node1) 我得到的是 path = path + [node1] 的正确路径,但不是其他两个。 def
我使用 Robot 框架在 Ride 中创建了一个测试用例。运行时出现错误。 我更新了python的路径。我更新了库和 Ride。我换了文件夹还是不行 *** Settings *** Documen
我尝试使用额外的功能自定义 pathlib.Path()。特别是,我真的很喜欢使用上下文管理器作为移入和移出目录的方法。我一直在使用它,但我似乎在让 Path() 与自定义上下文管理器一起工作时遇到错
编辑:基于 Ulf Rompe 的评论,重要的是使用“1”而不是“0”,否则您将破坏 sys.path . 我已经做 python 很长一段时间了(一年多),我总是很困惑为什么人们建议你使用 sys.
我有兴趣这样做的原因是因为我的路径中有一部分将保持不变,但我希望将其与其所有父部分一起删除。 所以如果我们说, some/unknown/path/foo/bar/baz 我想回去 bar/baz 但
在几个 SO 的问题中,有这些行可以访问代码的父目录,例如os.path.join(os.path.dirname(__file__)) returns nothing和 os.path.join(o
我已经在我的 Linux 中安装了 anaconda 来导入 python 包。 安装 anaconda 后,我无法在 python 中使用 anaconda,经过一番搜索后我发现输入此命令我能够使用
哪个更好用,为什么?我的意思是这两个命令在哪些方面不同以及如何不同?性能、可读性…… new FileInfo(path).Name 或 Path.GetFileName(path) 最佳答案 因为您
这不适用于某些设备。 在三星设备中,他们不允许使用下载管理器下载文件。 我已经在 list 中定义了权限并获得了运行时权限。 DownloadManager downloadManager = (Do
我想知道在这个例子中使用 Paths.get() 和 Path.resolve 有什么区别: public static void main(String[] args) { Path p1
目前我正在开发一个转换由 Inkscape 创建的 svg-paths 的应用程序。现在我不清楚关于绝对和相对路径组合的路径规范。规范是否说明了同时包含相对和绝对坐标的路径定义? 特别是关于绝对贝塞尔
我正在编写脚本,我需要在用户的 $PATH 上查找命令并获取该命令的完整路径。问题是我不知道用户的登录 shell 是什么,或者他们的 do 文件中可能有什么奇怪的东西。我将 bourne shell
Metalsmith 的文档对 path() 函数没有太多解释:#path(paths...): Resolve any amount of paths... relative to the work
我知道我可以通过 regedit 更改我的 wine PATH,但实际上我只需要为一次运行更改 PATH。 例如,我的软件名为frontend.exe,这取决于example/mylib.dll,我需
因此,绝对路径是一种到达某个文件或位置的方法,描述了它的完整路径、完整路径,并且它依赖于操作系统(Windows 和 Linux 的绝对路径,例如,不同)。另一方面,相对路径是从当前位置 ..(两个点
我对编程有点陌生(不是真的,但我仍在学习 - 我们不是吗?)。虽然我了解 Java 和 Python,并且了解 C、C++、JS、C#、HTML、CSS 等(并且我可以在终端中很好地导航),但我不熟悉
我对编程有点陌生(不是真的,但我仍在学习 - 我们不是吗?)。虽然我了解 Java 和 Python,并且了解 C、C++、JS、C#、HTML、CSS 等(并且我可以在终端中很好地导航),但我不熟悉
这个问题不太可能对任何 future 的访客有帮助;它只与一个较小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,通常不适用于全世界的互联网受众。如需帮助使此问题更广泛适用,visit the
使用环境变量(如 PATH)作为 $PATH 或 ${PATH} 有什么区别? 最佳答案 在大多数情况下没有区别。唯一重要的是你是否想在扩展后包含尾随文本。例如,假设您的 PATH 包含字符串 FOO
我是一名优秀的程序员,十分优秀!