我在用React。为了查询MySQL数据库中的一些数据,我创建了另一个NodeJS后端服务器并编写了这段代码。

  var con = mysql.createConnection({
    host: "localhost",
    port: "3306",
    database: "my_books",
    user: "root",
    password: "pokemon2345"
  });
  con.connect();

  var sql = JSON.parse(req.query.msg);
  console.log(sql);
  var answer = con.query(sql);
  con.end();
  res.send(JSON.stringify(answer));

这是我在React主应用程序中的代码。
    var request = new XMLHttpRequest();
    var jsql = JSON.stringify(sql);
    request.onreadystatechange = function() {
      debugger;
      if (this.readyState == 4 && this.status == 200) {
        var response = this.responseText;
        toast.success(typeof response);
      }
    };
    request.open(
      "GET",
      "http://localhost:3001/retrieve_books" + "?msg=" + jsql,
      true
    );
    request.send(jsql);

我不明白为什么会发生这个错误,我的代码是如何循环的?
提前谢谢!

最佳答案

循环JSON意味着,对象内部有对对象的引用,这使得JSON.stringify不可能。
在您的例子中,res.send(JSON.stringify(answer))可能是问题所在。con.query(sql)的响应可能不是一个简单的对象。
此外,该函数是异步的,需要回调才能得到答案(我假设您使用的是mysqljshttps://github.com/mysqljs/mysql
提供更多细节以进一步解释,但根本问题是变量“answer”的值

关于javascript - 如何解决NodeJS中的“TypeError:将圆形结构转换为JSON”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58256628/

10-16 17:26
查看更多