gpt4 book ai didi

node.js - Express 无法从后面读取未定义的属性 'name'

转载 作者:行者123 更新时间:2023-12-02 10:14:47 26 4
gpt4 key购买 nike

我尝试使用 Node js 和 Angular(Material ui)开发一个全栈应用程序。

我阻止了以下问题的问题。

我正在制作一个小型网络资源管理应用程序。我目前正处于Mysql数据库中数据的注册和发送阶段。

我收到以下错误:

TypeError: Cannot read property 'name' of undefined

这是我的代码:

const express = require('express');
const app = express();
var cors = require('cors');
var mysql = require('mysql');
const body = require("body-parser");

var connection = mysql.createConnection({
host : 'localhost',
user : 'root',
password : '',
database : 'totale',
});

app.use(cors());

app.get('/', function (req, res) {
res.send('Hello World!');
console.log(req);
});

app.get("/inscription",(req,res)=>{
var nom = req.body.name;
var prenom = req.body.prenom;
var mail = req.body.email;
var password = req.body.password;
connection.connect();
connection.query('INNSERT INTO inscription set nom = ?, prenom = ? ,mail = ? ,password = ? ',[nom,prenom,mail,password],function(err, rows) {
if (err) throw err;
console.log('The solution is: ', rows[0].solution);
});
//res.send('iok');
//connection.end();
});


app.listen(3000, function () {
console.log('app listening on port 3000!');
});

这是我的代码: typescript

import { Component, OnInit } from '@angular/core';
import { FormControl, Validators } from '@angular/forms';
import { User } from './../User';
import { Router } from '@angular/router';
import { FormBuilder, FormGroup } from '@angular/forms';
import { HttpClient } from '@angular/common/http';
import {tap} from 'rxjs/operators';


@Component({
selector: 'app-inscription',
templateUrl: './inscription.component.html',
styleUrls: ['./inscription.component.css']
})

export class InscriptionComponent implements OnInit {
signupForm;
results;
//email = new FormControl('', [Validators.required, Validators.email]);

constructor (private http: HttpClient, private formBuilder: FormBuilder)
{}
ngOnInit() {
this.signupForm = this.formBuilder.group({
email:"",
name: "",
lastname: "",
password : "",
});
}
public onFormSubmit() {

const configUrl = 'http://localhost:3000/inscription';

this.http.post(configUrl,this.signupForm.value)
.pipe(
tap(
data => console.log(configUrl, data),
error => console.log(configUrl, error)
)
)
.subscribe(results => this.results = results);
}
}

最佳答案

您需要使用主体解析器才能获取主体对象

app.use(cors());
app.use(express.json()); //Used to parse JSON bodies 👉 Express 4.16+

并且需要使用post方法

app.post("/inscription",(req,res)=>{
...
}

了解更多相关信息here 🚀

关于node.js - Express 无法从后面读取未定义的属性 'name',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59485625/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com