- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
美好的一天,我正在 ReactJS 中制作一个注册表单,注册表单包含名字、姓氏、电子邮件、密码、生日和上传图像字段。我设法将图像上传到服务器中,但是我无法添加其他字段名字、姓氏、电子邮件、密码和生日,它有一个错误 非法参数:未定义,字符串,我可以知道吗我做错了什么?谢谢。
ReactJS提交事件
import React, { Component } from "react";
import { Link } from "react-router-dom";
import DatePicker from "react-datepicker";
import moment from "moment";
import axios from "axios";
class Register extends Component {
constructor(props) {
super(props);
this.state = {
startDate: moment(),
firstname: "",
lastname: "",
email: "",
password: "",
dateofbirth: "",
receipt: "",
description: ""
};
this.handleChange = this.handleChange.bind(this);
this.onChange = this.onChange.bind(this);
this.onSubmit = this.onSubmit.bind(this);
this.fileSelectHandler = this.fileSelectHandler.bind(this);
}
handleChange(date) {
this.setState({
startDate: date
});
}
fileSelectHandler = event => {
this.setState({
receipt: event.target.files[0]
});
};
onChange(e, date) {
switch (e.target.name) {
case "receipt":
this.setState({ receipt: e.target.files[0] });
break;
default:
this.setState({ [e.target.name]: e.target.value });
}
e.preventDefault();
}
onSubmit(e) {
e.preventDefault();
const { description, receipt } = this.state;
const bodyFormData = new FormData();
bodyFormData.append("receipt", receipt);
bodyFormData.append("description", description);
bodyFormData.append("firstname", this.state.firstname);
bodyFormData.append("lastname", this.state.lastname);
bodyFormData.append("password", this.state.password);
bodyFormData.append("email", this.state.email);
const newUser = {
firstname: this.state.firstname,
lastname: this.state.lastname,
email: this.state.email,
password: this.state.password,
dateofbirth: document.getElementById("date").value
};
axios
.post("/api/users/register", bodyFormData, newUser, {
headers: {
accept: "application/json",
"Accept-Language": "en-US,en;q=0.8"
}
})
.then(function(res) {
console.log(res.data);
})
.catch(err => console.log(err));
console.log(bodyFormData);
}
render() {
return (
<div className="container_child signup_container">
<div className="signup_thumbnail">
<div className="thumbnail__content">
<h1 className="heading-primary">this is overlay with image</h1>
<h2 className="heading-secondary">
this is overlay with imagessss
</h2>
</div>
<div className="signup__overlay" />
</div>
<div className="container_child signup_form">
<form onSubmit={this.onSubmit} encType="multipart/form-data">
<div className="form-group">
<label htmlFor="username">Firstname</label>
<input
className="form-control"
type="text"
name="firstname"
id="firstname"
placeholder="Juan"
value={this.state.firstname}
onChange={this.onChange}
/>
</div>
<div className="form-group">
<label htmlFor="lastname">Last Name</label>
<input
className="form-control"
type="text"
name="lastname"
id="last-name"
placeholder="Dela Cruz"
value={this.state.lastname}
onChange={this.onChange}
/>
</div>
<div className="form-group">
<label htmlFor="prcid">Email</label>
<input
className="form-control"
type="email"
name="email"
id="email"
placeholder="juan@gmail.com"
value={this.state.email}
onChange={this.onChange}
/>
</div>
<div className="form-group">
<label htmlFor="prcid">Password</label>
<input
className="form-control"
type="password"
name="password"
id="password"
value={this.state.password}
onChange={this.onChange}
/>
</div>
<div className="form-group">
<label htmlFor="prcid">Birthday:</label>
<DatePicker
id="date"
selected={this.state.startDate}
onChange={this.handleChange}
/>;
</div>
<div className="form-group">
<div
className="mdl-textfield mdl-js-textfield mdl-textfield--file is-upgraded"
data-upgraded=",MaterialTextfield"
>
<input
className="mdl-textfield__input"
placeholder="File"
type="text"
id="uploadFile"
name="description"
value={this.state.description}
onChange={this.onChange}
//readonly="true"
/>
<div className="">
<input
type="file"
ref="files"
id="uploadBtn"
name="receipt"
onChange={this.onChange}
/>
</div>
{/* // <Dropzone onDrop={this.onDrop}>
// <div>Try dropping some files here, or click to select files to upload.</div>
// </Dropzone> */}
</div>
</div>
<div className="m-t-lg">
<ul className="list-inline">
<li>
<input
className="btn btn--form"
type="submit"
value="Register"
/>
</li>
<li>
<Link to="/login">I am already a member</Link>
</li>
</ul>
</div>
</form>
</div>
</div>
);
}
}
export default Register;
最佳答案
也许对你有帮助
Append the other fields with form data it works for me.
import React, { Component } from 'react';
import './test.css';
import 'font-awesome/css/font-awesome.min.css';
import Header from "../header/header";
import Sidebar from "../sidebar/sidebar";
import axios from "axios/index";
class AddTest extends Component {
constructor(){
super();
this.state={
categoryData:[],
courseData:[],
category:'',
course:'',
testFile:null,
categoryE:'',
courseE:'',
testFileE:'',
ErrorStatus:''
};
this.handleFile = this.handleFile.bind(this);
this.handleCat = this.handleCat.bind(this);
this.handleCourse = this.handleCourse.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
}
handleCat(e){
e.preventDefault();
this.setState({category:e.target.value});
this.setState({ErrorStatus:''});
this.setState({categoryE:''});
let res = this.menu.value;
axios({
method: 'get',
url: 'http://localhost:7777/api/getCourse/title/'+res,
})
.then((response) => {
this.setState({courseData:response.data});
})
.catch((e) =>
{
this.setState({success:'Alert: Something went wrong'});
});
}
handleCourse(e){
let cour = this.course.value;
this.setState({course:e.target.value});
this.setState({courseE:''});
}
handleFile(e){
this.setState({ testFile: e.target.files[0] });
this.setState({testFileE:''});
}
validate = () => {
let isError = false;
const errors = {};
if(this.state.category==='')
{
isError = true;
errors.categoryE = 'Please select category';
}
if(this.state.course==='')
{
isError = true;
errors.courseE = 'Please select course';
}
if(this.state.testFile===null)
{
isError = true;
errors.testFileE = 'Please Select a File';
}
if(isError){
this.setState({
...this.state,
...errors
})
}
return isError;
}
handleSubmit(e)
{
e.preventDefault();
const err = this.validate();
if(!err)
{
var formData = {
category:this.state.category,
course:this.state.course,
};
const {category,course} = this.state;
let fd = new FormData();
fd.append('Test',this.state.testFile,this.state.testFile.name);
fd.append('category',category);
fd.append('course',course);
console.log(fd);
axios({
method: 'post',
url: 'http://localhost:7777/api/uploadTest',
data: fd,
})
.then((response) => {
if(response.data=='Success')
{
alert('Test has been Added..!!');
}
else
{
alert('Something went wrong');
this.setState({category:''});
}
// this.setState({success:'Alert: '+response.data});
})
.catch((e) =>
{
console.error(e);
this.setState({success:'Alert: Something went wrong'});
});
}
}
componentWillMount(){
axios({
method: 'get',
url: 'http://localhost:7777/api/getCategory',
})
.then((response) => {
this.setState({categoryData:response.data});
})
.catch((e) =>
{
console.error(e);
this.setState({success:'Alert: Something went wrong'});
});
}
render() {
return (
<div className="AddCourseCategory">
<Header/>
<section>
<div className="mainwrapper">
<Sidebar/>
<div className="mainpanel">
<div className="pageheader">
<div className="media">
<div className="pageicon pull-left">
<i className="fa fa-home"></i>
</div>
<div className="media-body">
<ul className="breadcrumb">
<li><a href="#"><i className="glyphicon glyphicon-home"></i></a></li>
<li>Dashboard</li>
<li>Manage Test</li>
</ul>
<h4>Upload Test</h4>
</div>
</div>
</div>
<div className="contentpanel">
<div className="col-sm-5 col-sm-offset-3">
<form encType="multipart/form-data" onSubmit={this.handleSubmit} className="form-horizontal form-bordered" method="post">
<div className="form-group">
<select ref = {(input)=> this.menu = input} onChange={this.handleCat} className="form-control" name="category" data-toggle="tooltip" data-trigger="hover"
className="form-control tooltips" title="Select Course Category">
<option selected disabled>Select Category</option>
{
this.state.categoryData.map((item, index) =>(
<option key={index} value={item.category}>{item.category}</option>
))
}
</select>
<span className='field-error'>{this.state.categoryE}</span>
</div>
<div className="form-group">
<select ref = {(input)=> this.course = input} onChange={this.handleCourse} className="form-control" name="course" data-toggle="tooltip" data-trigger="hover"
className="form-control tooltips" title="Select Course ">
<option selected disabled>Select Course</option>
{
this.state.courseData.map((item, index) =>(
<option key={index} value={item.title}>{item.title}</option>
))
}
</select>
<span className='field-error'>{this.state.courseE}</span>
</div>
<div className="form-group">
<input onChange={this.handleFile} name="testFile" type="file" placeholder="Select File Here"
title="Upload Test Here"
data-toggle="tooltip" data-trigger="hover"
className="form-control tooltips"/>
<span className='field-error'>{this.state.testFileE}</span>
</div>
<div className="form-group">
<button type="submit" className="btn btn-info">Save</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
</div>
);
}
}
export default AddTest;
关于javascript - ReactJS Axios使用Multer传递数据并上传图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51434682/
我有这个用于上传文件的中间件。 @Injectable() export class FilesMiddleware implements NestMiddleware { private sto
我在使用 multer 和 multer-s3 npm 以及 node.js 和express 将图像上传到 S3 时遇到问题。 我已阅读 multer 和 multer-s3 的文档并按照教程进行操
任何人都知道为什么“重命名”函数(以及所有其他 multer 回调)不起作用? var express = require('express'); var multer = require('mul
我有这个nodejs应用程序。很简单。 var express = require('express'); var multer = require('multer'); var upload = m
routes.js module.exports=function(app, upload){ var postingsController=require('../controlle
我正在使用 FormData 上传文件并使用 Multer 在服务器端接收该文件。一切都按预期工作,除了因为我在前端使用 FileSystem API ( https://developer.mozi
我正在使用multer要将图像上传到快速服务器,默认情况下 multer 会创建自动生成/随机文件名(这通常很好),但在我的特殊情况下,我需要文件名与原始文件名相同,我尝试了以下方法: const u
我对 multer/node/express/mongoose/... 相当陌生,我目前正在尝试从具有相同名称的不同输入上传多个文件(我使用reactjs 生成输入)。 这是我的 React 前端:
我正在尝试使用 multer 将文件从客户端的 html 表单上传到服务器端,multer 模块在服务器端处理文件。 这里的事情是一切正常,因为我从服务器收到 200 ok 响应,但文件应该上传到我的
我在 Internet 上到处查看,但没有发现任何看起来像我的问题。我是 Node.JS 的新手,我想使用 Multer 上传两张不同的图片,但格式相同。这是我的表格: Add a prof
我这辈子都无法使 multer 的文件上传正常工作。我已经阅读了数十个教程,遵循了 YT 指南,并搜索了数十个 StackOverflow 问题,但无法通过 Postman 解决问题。 这是路由的页面
我想在单个 post 请求中保存一张图像,这将是用户对 MongoDB 的头像,以及一些用户的信息,使用来自 npm 的名为 multer 的包。不幸的是,只有我在控制台中看到的是错误:TypeErr
我正在使用 Multer 来管理图像上传,当在本地计算机上运行我的应用程序时,一切都运行良好。但现在我尝试部署到 Heroku,我在应用程序日志中收到此错误: Unhandled rejection
我在使用 Multer 保存多个图像时遇到问题 路线如下: router.post('/imagesSection', upload.array('up
我使用 multer . 问题 1 当我将以下代码段放入 app.js app.use(multer({ dest: './uploads' } ).single('file'
我有一个这样的对象数组: data: [ {"image": File, "certificate": File}, {"image": File, "certificate": Fi
我知道我可以通过 multer 通过存储对象更改文件名,如下所示: const storage = multer.diskStorage({ destination: (req, file,
我正在使用 Multer保存我通过表单上传的文件,但我不知道为什么我的代码将它保存为一个奇怪的名称并且没有扩展名,我刚刚使用了文档中的代码。 server.js: const multer = re
我正在尝试将图像(jpg/jpeg/png)从浏览器上传到 NodeJS。我已经阅读了几个教程和论坛上的许多帖子,但似乎很少有人遇到这个特定问题。 我已确保将提供给 multer 的名称 ( uplo
我创建了一个 node.js 服务器,并使用 multer 模块上传一些文件。 我的问题是:我该如何处理错误?就像客户端关闭直到上传完成?抱歉英语不好,我是意大利人。 这是我实际不起作用的代码: va
我是一名优秀的程序员,十分优秀!