- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试通过邮递员发送发帖请求,以向我的请假架构添加新的请假类型。但是,当我发送发布请求时,出现验证错误,通知我用户对象中每个属性都需要一个“路径”。确切的错误说:“ _message”:“离开验证失败”,
“ message”:“离开验证失败:类型:路径type
是必需的。颜色:路径color
是必需的。isEnabled:路径isEnabled
是必需的。”,
“ name”:“ ValidationError”
***Route files***
const express = require('express')
const router = express.Router()
var bodyParser = require ('body-parser')
// Require the controllers WHICH WE DID NOT CREATE YET!!
const LeaveSchema = require('../models/leaveType')
// a simple test url to check that all of our files are communicating correctly.7
//router.use(bodyParser());
// create a leaveType
// router.post('/api/leaveTypes/makeLeaveType/', (req, res) => {
// LeaveSchema.create(req.body)
// .then(leaveTypes => res.json(leaveTypes))
// })
router.use(bodyParser());
// get aLL leaveTypes
router.get('/api/leaveTypes', (req, res) => {
LeaveSchema.find(function (err, leave) {
if (err) {
console.log(err)
} else {
res.json(leave)
}
})
})
router.get('/api/leaveTypes/:id', (req, res) =>
LeaveSchema.find({ _id: req.params.id })
.then(function (leaveTypes) {
res.json(leaveTypes)
})
.catch(err => console.log(err)))
router.put('/api/leaveTypes/:id', async function (req, res, next) {
var x = await LeaveSchema.find({ _id: req.params.id })
console.log(x[0].isEnabled)
if (x[0].isEnabled === true) {
LeaveSchema.findById(req.params.id).updateOne({ $set: { isEnabled: false } },
function (err, users) {
if (err) {
console.log(err)
} else {
res.json(users)
}
}) } else {
LeaveSchema.findById(req.params.id).updateOne({$set: { isEnabled: true } },
function (err, users) {
if (err) {
console.log(err)
} else {
res.json(users)
}})}
})
router.delete('api/leavetypes/delete/:id', function(req,res){
var id = req.params.id;
LeaveSchema.findOneAndRemove({_id: id}, function(err){
if(err){
console.log(err);
return res.status(500).send();
}
return res.status(200).send();
});
});
router.post('/api/leavetypes/add', function(req, res) {
const type = req.body.type;
const color = req.body.color;
const isEnabled = req.body.isEnabled;
const newLeaveType = new LeaveSchema({
type,
color,
isEnabled
});
newLeaveType.save()
.then(()=> res.json('New Leave Added!'))
.catch(err => res.send(err));
});
module.exports = router
***Leave Types Model***
const mongoose = require('mongoose')
const Schema = mongoose.Schema
const LeaveSchema = new Schema({
type: { type: String, required: true, max: 100 },
color: { type: String, required: true, max: 100 },
isEnabled: { type: Boolean, required: true, max: 100 }
})
// Export the model`enter code here`
module.exports = mongoose.model('Leave', LeaveSchema)
最佳答案
关于javascript - 验证错误mongodb,node.js和Express后端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58803904/
我有一个使用 css 列的下拉菜单,当我使用 jquery slide() 时,它会调整下拉框的大小,并重排内容直到达到完整高度。 这是一个工作示例 https://codepen.io/peterg
我有一个带有嵌套 ScrollViewer 的 Expander,如下所示: 代码(简化版)
我想在所有 ajax 调用之后调用一些 javascript 函数。我知道如何调用每个单独的 ajax 调用中的函数,如下所示: function xyz() { if (window.XMLHttp
我想将值从应用程序端传递到 api。在此 api 调用中传递图像、名字、电子邮件、电话和位置。在 Debug模式下,检查值不会被传递。 代码下方 File file = null;
我正在尝试在使用reportlab生成的pdf中的表格后插入分页符,我正在使用以下函数生成pdf: def render_to_pdf(template_src, context_dict): t
CBPeripheralManager 是否有推荐的方法来终止连接。到目前为止我发现的最好的方法就是干脆不响应动态值,然后 BLE 堆栈似乎关闭了连接,但这似乎很粗糙。 一定有更好的方法吗? 最佳答案
我的 API 的 REST 端位于以下地址:http://test.jll.aplikacje-dedykowane.pl/rest/warehouse/all 。现在,我尝试返回在此页面准备的 JS
我有以下 CPP 代码。我想做的是,当我的 native 端发生错误时,我会通知 Java 该错误。我用了How can I catch SIGSEGV (segmentation fault) an
限制对象的方法之一是像这样给函数添加限制 def ten_objects(): obj = Model.objects.all()[0:10] # limit to 10 retur
我目前在电信公司实习,这是一个专业,也是本科生。我有很多选择。据我所知,我知道独立应用程序端的 c、c++、c#、java 语言,在移动端我尝试进入 android 世界,也知道 php、mysql、
我想让我的边框底部看起来像这样: 有一个 flex 的末端。目前它看起来像这样: 我尝试使用的 CSS 是 border-bottom-right-radius: 10px;。代码如下所示:
我有一个 Flutter 项目,突然间,据我所知,我没有做任何特别的事情..Android 端开始显示错误,我完全迷路了,我完全不知道哪里出了问题,也不知道为什么会这样。 这就是我打开 android
我有一个自定义对象列表 (List) 。我需要将此数据发送到 React Native 端以显示在平面列表中。我该怎么做?这个列表出现在 类 NativeToReact(reactContext:Re
我有这个代码: #if defined(NOT_STANDALONE) JNIEXPORT void JNICALL sumTraces (JNIEnv* env, jclass caller,
我有一个定义一对多模型关系的 Django 应用程序。模型如下所示: from django.db import models # Create your models here. class Str
我有以下代码,它根据 IFrame 内容的大小调整 IFrame 的大小: function setIframeHeight(id) {
如何创建自定义过滤器 angularjs javascript Controller 端?我想通过 SegmentId 在名为段的数组中搜索,以创建过滤器,该过滤器通过 SegmentId 在段数组搜
我的代码在 netbeans 8.0.2 中我几乎尝试了所有方法,但没有结果。请帮助我。如何在 netbeans 中显示它? 最佳答案 您只需单击源包(源文件),它就会显示您的项目文件。 关于java
我想这是纯 C++ 问题和 OpenGL 问题之间的一种交叉。我有一个统一的缓冲区,并在其中分配 sizeof(ShaderData) 字节的空间。我在着色器的 GPU 端使用 std140 布局。
我对 Hadoop 中 reduce 端的文件合并过程的理解有问题,因为它在“Hadoop:权威指南”(Tom White)中有所描述。引用它: When all the map outputs ha
我是一名优秀的程序员,十分优秀!