- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 node.js 和 express 的新手。
我正在尝试使用 nodejs、express 和 MongoDB 创建名片生成器应用程序。
我在 ejs 中创建了一个多步骤表单,我想将输入的数据存储在 MongoDB 中。任何人都可以让我知道我该怎么做吗?以下是我尝试使用的 ejs 和 js 代码片段。
还提供了 MongoDB 模式。
提前致谢。
<section class="multi_step_form">
<form action="/blogs" method="POST" enctype="multipart/form-data" id="msform">
<!-- Tittle -->
<div class="tittle">
<h2>New Card</h2>
</div>
<!-- progressbar -->
<ul id="progressbar">
<li class="active">Personal details</li>
<li>About Section</li>
<li>Product Section</li>
</ul>
<!-- fieldsets -->
<fieldset>
<div class="form-row align-items-center">
<div class=" col-md-3 ">
<h5>Name</h5>
</div>
<div class="form-group col-md-9 ">
<input type="text " class="form-control " placeholder="Name of the Card Holder" name="name " required>
</div>
</div>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Company</h5>
</div>
<div class="form-group col-md-9 ">
<input type="text " class="form-control" placeholder="Name of the Company" name="company">
</div>
</div>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Designation</h5>
</div>
<div class="form-group col-md-9 ">
<input type="text " class="form-control" placeholder="Designation at the Company" name="designation">
</div>
</div>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Phone Number</h5>
</div>
<div class="form-group col-md-9 ">
<input type="text " class="form-control" placeholder="Phone Number" name="phone_no">
</div>
</div>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Email</h5>
</div>
<div class="form-group col-md-9 ">
<input type="text " class="form-control" placeholder="Email ID" name="email">
</div>
</div>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Address</h5>
</div>
<div class="form-group col-md-9 ">
<input type="text " class="form-control" placeholder="Address" name="address">
</div>
</div>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Profile Photo</h5>
</div>
<div class="form-group col-md-9 ">
<input type="file" name="image" id="image" class="form-control-file">
</div>
</div>
<div class="form-group">
</div>
<button type="button " class="action-button previous_button ">Back</button>
<button type="button " class="next action-button ">Continue</button>
</fieldset>
<fieldset>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Year of Establishment</h5>
</div>
<div class="form-group col-md-9 ">
<input type="text " class="form-control" placeholder="Year of Establishment of the Company" name="year_of_establishment">
</div>
</div>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Description</h5>
</div>
<div class="form-group col-md-9 ">
<input type="text " class="form-control" placeholder="Description about the Company" name="description">
</div>
</div>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Profile Photo</h5>
</div>
<div class="form-group col-md-9 ">
<input type="file" name="image" id="image" class="form-control-file">
</div>
</div>
<button type="button " class="action-button previous previous_button ">Back</button>
<button type="button " class="next action-button ">Continue</button>
</fieldset>
<fieldset>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Product 1</h5>
</div>
<div class="form-group col-md-9 ">
<input type="text " class="form-control" placeholder="Name of product" name="product">
</div>
</div>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Description</h5>
</div>
<div class="form-group col-md-9 ">
<input type="text " class="form-control" placeholder="Description about the product" name="product_desc">
</div>
</div>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Product Images</h5>
</div>
<div class="form-group col-md-9 ">
<input type="file" name="product_img" id="image" class="form-control-file">
</div>
</div>
<button type="button " class="action-button previous previous_button ">Back</button>
<button type="submit" class="action-button ">Save</a></button>
</fieldset>
</form>
</section>
<!-- End Multi step form -->
router.post('/', upload.single('image'), async(request, response) => {
console.log(request.file);
console.log(request.body);
let blog = new Blog({
name: request.body.name,
company: request.body.company,
designation: request.body.designation,
phone_no: request.body.phone_no,
address: request.body.address,
img: request.file.filename,
year_of_establishment: request.body.year_of_establishment,
description: request.body.description,
product_name: request.body.product_name,
product_desc: request.body.product_desc,
product_img: request.file.filename,
});
try {
blog = await blog.save();
response.redirect('blogs/editAbout');
//response.redirect(`blogs/${blog.slug}`);
} catch (error) {
console.log(error);
}
});
const blogSchema = new mongoose.Schema({名称: {类型:字符串,
},
img: {
type: String,
},
company: {
type: String,
//required: true,
},
designation: {
type: String,
},
phone_no: {
type: String,
},
address: {
type: String,
},
year_of_establishment: {
type: String,
},
description: {
type: String,
},
product_name: {
type: String,
},
product_desc: {
type: String,
},
product_img: {
type: String,
},
timeCreated: {
type: Date,
default: () => Date.now(),
},
/*snippet: {
type: String,
},*/
slug: { type: String, slug: 'name', unique: true, slug_padding_size: 2 },
});
最佳答案
<html>
<head>
<title><%= title %></title>
<link rel='stylesheet' href='/stylesheets/style.css' />
</head>
<body>
<section class="multi_step_form">
<form action="/blogs" method="POST" enctype="multipart/form-data" id="msform">
<!-- Tittle -->
<div class="tittle">
<h2>New Card</h2>
</div>
<!-- progressbar -->
<ul id="progressbar">
<li class="active">Personal details</li>
<li>About Section</li>
<li>Product Section</li>
</ul>
<!-- fieldsets -->
<fieldset>
<div class="form-row align-items-center">
<div class=" col-md-3 ">
<h5>Name</h5>
</div>
<div class="form-group col-md-9 ">
<input type="text " class="form-control " placeholder="Name of the Card Holder" name="name " required>
</div>
</div>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Company</h5>
</div>
<div class="form-group col-md-9 ">
<input type="text " class="form-control" placeholder="Name of the Company" name="company">
</div>
</div>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Designation</h5>
</div>
<div class="form-group col-md-9 ">
<input type="text " class="form-control" placeholder="Designation at the Company" name="designation">
</div>
</div>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Phone Number</h5>
</div>
<div class="form-group col-md-9 ">
<input type="text " class="form-control" placeholder="Phone Number" name="phone_no">
</div>
</div>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Email</h5>
</div>
<div class="form-group col-md-9 ">
<input type="text " class="form-control" placeholder="Email ID" name="email">
</div>
</div>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Address</h5>
</div>
<div class="form-group col-md-9 ">
<input type="text " class="form-control" placeholder="Address" name="address">
</div>
</div>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Profile Photo</h5>
</div>
<div class="form-group col-md-9 ">
<input type="file" name="image" id="image" class="form-control-file">
</div>
</div>
<div class="form-group">
</div>
<button type="button " class="action-button previous_button ">Back</button>
<button type="button " class="next action-button ">Continue</button>
</fieldset>
<fieldset>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Year of Establishment</h5>
</div>
<div class="form-group col-md-9 ">
<input type="text " class="form-control" placeholder="Year of Establishment of the Company" name="year_of_establishment">
</div>
</div>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Description</h5>
</div>
<div class="form-group col-md-9 ">
<input type="text " class="form-control" placeholder="Description about the Company" name="description">
</div>
</div>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Profile Photo</h5>
</div>
<div class="form-group col-md-9 ">
<input type="file" name="image" id="image" multiple class="form-control-file">
</div>
</div>
<button type="button " class="action-button previous previous_button ">Back</button>
<button type="button " class="next action-button ">Continue</button>
</fieldset>
<fieldset>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Product 1</h5>
</div>
<div class="form-group col-md-9 ">
<input type="text " class="form-control" placeholder="Name of product" name="product">
</div>
</div>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Description</h5>
</div>
<div class="form-group col-md-9 ">
<input type="text " class="form-control" placeholder="Description about the product" name="product_desc">
</div>
</div>
<div class="form-row align-items-center">
<div class="col-md-3 ">
<h5>Product Images</h5>
</div>
<div class="form-group col-md-9 ">
<input type="file" name="image" id="image" multiple class="form-control-file">
</div>
</div>
<button type="button " class="action-button previous previous_button ">Back</button>
<button type="submit" class="action-button ">Save</a></button>
</fieldset>
</form>
</section>
</body>
</html>
/* Schema */
var mongoose=require('mongoose');
mongoose.connect('mongodb://localhost:27017/mydb',
{
useNewUrlParser: true,
useUnifiedTopology: true,
useCreateIndex: true,
useFindAndModify: false
}
);
var conn=mongoose.connection;
const blogSchema = new mongoose.Schema({
name: { type: String },
company: {type: String },
designation: { type: String },
phone_no: { type: String },
email: { type: String },
address: { type: String },
year_of_establishment: { type: String },
description: { type: String },
product_name: { type: String},
product_desc: { type: String},
avtar: [String],
timeCreated: { type: Date, default: () => Date.now()},
});
var BlogSchema = mongoose.model('BlogSchema',blogSchema);
module.exports=BlogSchema;
/* Use Routes */
var express = require('express');
var router = express.Router();
const multer = require('multer');
const path = require('path');
const userModal = require("../modals/userSchema")
//router.use(express.static(__dirname+'./public/'));
var Storage=multer.diskStorage({
destination:"./public/images",
filename:(req,file,cb)=>{
cb(null,file.fieldname+"_"+Date.now()+path.extname(file.originalname));
}
});
var upload=multer({
storage:Storage
}).array('image');
/* GET users listing. */
router.post('/blogs', upload, async(request, response) => {
let arr=[];
for(let i=0;i<request.files.length;i++){
arr[i]=request.files[i].filename;
}
let user = new userModal({
name: request.body.name,
company: request.body.company,
designation: request.body.designation,
phone_no: request.body.phone_no,
email:request.body.email,
address: request.body.address,
year_of_establishment: request.body.year_of_establishment,
description: request.body.description,
product_name: request.body.product_name,
product_desc: request.body.product_desc,
avtar: arr,
});
try {
blog = await user.save();
} catch (error) {
console.log(error);
}
});[![enter image description here][1]][1]
/image/XHGzn.png
enter code here
module.exports = router;
[1]: /image/XHGzn.png
关于javascript - 如何从 nodejs 中的多步骤表单发布数据并表达到 MongoDB?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65753628/
我们正在使用 VSTS 构建和发布通过 Xamarin 创建的 iOS 和 Android 应用程序。通过 VSTS 将 Android 应用发布到商店相对简单。有人可以指导我或提供一些如何通过 VS
我一直在研究 Spring Social Facebook 的 publish(objectId, connectionName, data) API ,但不确定此 API 的用法(遗憾的是,由于缺少
我正在使用 django viewflow 创建一个发布流程: 用户创建对象 它进入审核流程,其状态为待处理(公众不可见) 经过审核和批准后,就会发布并公开可见。 如果用户编辑同一实体,则会再次进入审
我正在尝试进行 API 调用,并且 API 需要格式为 XML: Security GetSessionInfo 999999999999 0 2 {
我已经查看了所有 StackOverflow,但没有找到适合我的案例的解决方案我有 405 HttpStatusCode 调用 API/Regions/Create 操作这是我的 baseContro
如果我切换到新版本的SpringBoot,我在启动应用程序时会得到上面的错误信息。这是为什么? 最美好的祝愿史蒂文 pom.xml 4.0.0 de.xyz.microservice spring
我有一个场景,页面导航是从一个域到另一个域完成的。例如,导航是从 http://www.foo.com到 http://www.bar.com在 JavaScript 中单击按钮 重定向时,我需要将用
这半年来一直深耕包头,这个城市比较不错,但是推进项目的难度确实挺大的。与开发产品相比,后者更省心。但是光研发产品,没有项目
我正在阅读有关 Github 版本 的信息,它似乎很适合您的项目。因为我们需要决定将哪些功能用于生产,哪些不用于。 我无法理解的部分是,master 和 release 分支如何在其中发挥作用。 Sh
我将一些代码推送到远程存储库,然后在 GitHub 上创建了第一个版本,并将其命名为 'v0.0.1'。 GitHub 现在显示我现在有一个版本,并且还在“标签”中显示我有一个标签 “v0.0.1”。
如果我有一个具有以下文件/文件夹结构的 GitHub 存储库 github.com/@product/template: /build /fileA /fileB /src /genera
我有一个 Maven 多模块项目。 当代码开发完成后,我们想在 Jenkins 中编写一个分支构建作业,它分支代码,增加主干中的 pom 版本,并删除 -SNAPSHOT 来自分支中的 pom 版本。
我有一个非常大的集合(约 40000 个文档,包含约 20-25 个字段,包括包含一组约 500 个项目的数组字段)和约 2000 个订阅者(他们现在只是机器人)。 因此,当用户订阅整个集合(不包括服
如果我正在使用消息队列构建一个包含数十个发布者/订阅者的系统,那么我似乎有一些网络配置选项: 我可以拥有一个所有机器都使用的集群代理 - 每台机器都没有本地队列 我可以在每台机器上本地安装代理,并使用
我正在使用 Flash Develop,并且创建了一个 ActionScript 3.0 项目。它启动并读取一个 xml 文件,其中包含图像的 url。我已将 url 保留在与 swf 相同的文件夹中
如果我在一个句子中使用 alloc 和 retain 声明一个 NSArray 那么我应该释放 NSArray 对象两次(即[arrayObject release] 2次)? 最佳答案 如果您在同一
我正在尝试在 Node 中实现发布/订阅模式,但不使用 Redis。功能应该是相同的;您可以发布到 channel ,订阅 channel 并收听数据(如果您已订阅);以下是 Redis 功能: pu
编辑:这个问题、一些答案和一些评论,包含很多错误信息。见 how Meteor collections, publications and subscriptions work准确理解发布和订阅同一服
我正在开发一款 DirectX 游戏,我发现在发布版本中我的平均帧速率为 170fps,但是在调试版本中我的帧速率约为 20fps。 我想知道发布和调试版本之间的巨大差异是否正常,特别是因为在调试中我
是否有办法回滚 Windows Azure 网站和 SQL 部署/发布? 我发布了一个网站,现在它导致了很多错误,我想回到之前的状态并进一步处理代码。 这可能吗? 最佳答案 如果您使用 Git 或 T
我是一名优秀的程序员,十分优秀!