繁体   English   中英

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

[英]Error “Assignment to constant variable” in ReactJS

我确实遵循了如何将 mailchimp 与节点后端集成的教程。 我从来没有碰过后端,所以很蹩脚。 当我发布到他们的 API 时,我得到了订阅者的凭据,但我得到了一个错误返回 - “分配给常量变量”。 通读 web 和其他 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"的空 object ,然后尝试为其分配一个值。 我尝试将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);
});

如果有人可以提供帮助,我将不胜感激。 订阅表格有效,但我需要清除该错误,以便我的前端在提交表格时正常工作。

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

这样您就不会重新分配resObj引用(因为resObj是 const,所以无法重新分配),而只是更改其属性。

参考 MDN 网站

编辑:此外,而不是res.send(respObj)你应该写res.send(resObj) ,这只是一个错字

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM