JSON.stringify忽略数据,返回{}

时间:2017-09-06 13:29:30

标签: javascript json angular typescript

我是javascript的新手,在使用JSON.stringify()转换对象时遇到问题。

以下是代码:

const tmp4 = this.getrulecondition2(rule._id, key); //this returns the object that I need to convert to json string..

console.log(tmp4); //shows the output as below in the chrome console.
//{}Command: "ps"Match: "test"Name: "test"Regex: "test"Terminal: "test"__proto__: Object

var str = JSON.stringify(tmp4);
console.log(str); //shows {} in the console log.

我想知道它在从函数返回获取对象之前转换stringify语句。如何在获得功能结果后确保它进入下一行?

0 个答案:

没有答案