将单引号放在变量中

时间:2014-04-02 03:44:54

标签: node.js

我试图使用node.js

将引号放在变量中

在以下代码中:

req.on('end', function () {
      var postreq = qs.parse(body);
      console.log(JSON.stringify(postreq))    
    });

console.log打印{"cmd":"sel_media","value":"5X7_photo_paper.png"}

我想像这样引用它:'{"cmd":"sel_media","value":"5X7_photo_paper.p"}'

我试过这种方式"' + JSON.stringify(postreq) + '"它会打印' JSON.stringify(postreq)'
我没有像我预期的那样在单引号中得到确切的值。

我怎样才能获得单曲引用中的值:{"cmd":"sel_media","value":"5X7_photo_paper.png"}

1 个答案:

答案 0 :(得分:3)

// Sample object.
var postreq = { cmd: "sel_media", value: "5X7_photo_paper.png" };

// Output JSON form enclosed in single quotes:
console.log("'" + JSON.stringify(postreq) + "'");