我有以下代码。我有一个let x,我想添加更多的值(从mongodb请求中解析)。问题是最后我有了[object Object]而不是值。
我应该如何处理?
df.head(3).T.plot.bar(stacked=True, colors=['blue','red','green'])
输出:
非常感谢。
答案 0 :(得分:0)
let url1 = "POST get list from DB";
不是有效的URL
您需要在 array
中push
object
您应遵循以下方式
let x=[{"user": "test","Name": "test"}];
x.push({"user": "test2","Name": "test2"});
console.log(x);