ReactJS中的错误“分配给常量变量”

问题描述 投票:0回答:1

我确实遵循了有关如何将mailchimp与节点后端集成的教程。我从来没有碰过后端,所以很la脚。当我发布到他们的API时,我获得了订户的凭据,但是却收到了一个错误-“分配给常数变量”。通过网络和其他SO问题阅读,似乎我正在尝试重新分配CONST值。

我看了一下我的代码,发现这里唯一有问题的是

request(options, (error, response, body) => {


    try {
            const resObj = {};
            if (response.statusCode == 200) {
                resObj = {
                    success: `Subscibed using ${email}`,
                    message: JSON.parse(response.body),
                };
            } else {
                resObj = {
                    error: ` Error trying to subscribe ${email}. Please, try again`,
                    message: JSON.parse(response.body),
                };
            }
            res.send(respObj);
        } catch (err) {
            const respErrorObj = {
                error: " There was an error with your request",
                message: err.message,
            };
            res.send(respErrorObj);
        }
    });

我注意到我正在创建一个名为"resObj"的空对象,然后尝试为其分配一个值。我尝试将CONST更改为LET,但是出现错误消息:"resObj is not defined"

这是我的前端代码:

 import React, { useState } from "react";
import "./App.css";
import Subscribe from "./components/Subscribe";
import Loading from "./components/Loading/Loading";
import axios from "axios";
import apiUrl from "./helpers/apiUrl";

function App() {
    const [loading, setLoading] = useState(false);
    const [email, setEmail] = useState("");

    const handleSendEmail = (e) => {
        setLoading(true);
        console.log(email);
        axios
            .post(`${apiUrl}/subscribe`, { email: email })
            .then((res) => {
                if (res.data.success) {
                    alert(`You have successfully subscribed!, ${res.data.success}`);
                    setEmail("");
                    setLoading(false);
                } else {
                    alert(`Unable to subscribe, ${res.data.error}`);
                    console.log(res);
                    setLoading(false);
                    setEmail("");
                }
            })
            .catch((err) => {
                setLoading(false);
                alert("Oops, something went wrong...");
                console.log(err);
                setEmail("");
            });
        e.preventDefault();
    };

    const handleInput = (event) => {
        setEmail(event.target.value);
    };

    // const handleLoadingState = (isLoading) => {
    //  setLoading({ isLoading: loading });
    //  console.log(loading);
    // };
    return (
        <div className='App'>
            <h1>Subscribe for offers and discounts</h1>

            {loading ? (
                <Loading message='Working on it...' />
            ) : (
                <Subscribe
                    buttonText='Subscribe'
                    value={email}
                    handleOnChange={handleInput}
                    handleOnSubmit={handleSendEmail}
                />
            )}
        </div>
    );
}

export default App;

和后端代码:

const restify = require("restify");
const server = restify.createServer();
const corsMiddleware = require("restify-cors-middleware");
const request = require("request");
require("dotenv").config({ path: __dirname + "/variables.env" });

const subscribe = (req, res, next) => {
    const email = req.body.email;
    const dataCenter = process.env.DATA_CENTER;
    const apiKey = process.env.MAILCHIMP_API_KEY;
    const listID = process.env.LIST_ID;

    const options = {
        url: `https://${dataCenter}.api.mailchimp.com/3.0/lists/${listID}/members`,
        method: "POST",
        headers: {
            "content-type": "application/json",
            Authorization: `apikey ${apiKey}`,
        },
        body: JSON.stringify({ email_address: email, status: "subscribed" }),
    };

    request(options, (error, response, body) => {
        try {
            const resObj = {};
            if (response.statusCode == 200) {
                resObj = {
                    success: `Subscibed using ${email}`,
                    message: JSON.parse(response.body),
                };
            } else {
                resObj = {
                    error: ` Error trying to subscribe ${email}. Please, try again`,
                    message: JSON.parse(response.body),
                };
            }
            res.send(respObj);
        } catch (err) {
            const respErrorObj = {
                error: " There was an error with your request",
                message: err.message,
            };
            res.send(respErrorObj);
        }
    });
    next();
};

const cors = corsMiddleware({
    origins: ["http://localhost:3001"],
});

server.pre(cors.preflight);
server.use(restify.plugins.bodyParser());
server.use(cors.actual);
server.post("/subscribe", subscribe);

server.listen(8080, () => {
    console.log("%s listening at %s", server.name, server.url);
});

[如果有人能帮助我,我将非常感谢。订阅表单有效,但是我需要清除该错误,以便前端可以正确地工作以提交表单。

javascript reactjs variables constants variable-assignment
1个回答
1
投票

也许您正在寻找的是Object.assign(resObj, { whatyouwant: value} )

这样您就不会重新分配resObj引用(由于[C​​0]是常量,因此无法重新分配),而只是更改其属性。

resObj

编辑:而且,您应该写Reference at MDM website而不是res.send(respObj),这只是一个错字

© www.soinside.com 2019 - 2024. All rights reserved.