无法从curl访问JSON值

时间:2015-06-05 14:30:59

标签: json node.js curl

我使用这个curl命令:

curl -X POST -H "Content-Type: application/json" http://localhost:8081/creditcard -d '{"credit-card":"1234-5678-9101-1121"}'

在我的js文件中,我有这个代码块来获取信用卡的价值:

request.on('data', function(data) {
    var cc = 'credit-card';

    var a = JSON.parse(data.toString());

    console.log(a[cc]);
}

为此,我得到:

undefined:1
'{credit-card:1234-5678-9101-1121}'
^
SyntaxError: Unexpected token '
    at Object.parse (native)
    at IncomingMessage.<anonymous> (<path>\ccserver.js:32:34)
    at IncomingMessage.emit (events.js:107:17)
    at IncomingMessage.Readable.read (_stream_readable.js:373:10)
    at flow (_stream_readable.js:750:26)
    at resume_ (_stream_readable.js:730:3)
    at _stream_readable.js:717:7
    at process._tickCallback (node.js:355:11)

所以我尝试使用JSON.stringify,如下所示:

request.on('data', function(data) {
    var cc = 'credit-card';

    var a = JSON.parse(JSON.stringify(data.toString()));

    console.log(a[cc]);
}

但这就是我得到的:

undefined
undefined

但是,当我尝试解析硬编码的json字符串时,它就可以了:

var jsonString = '{"credit-card":"1234-5678-9101-1121"}';
var a = JSON.parse(jsonString);
console.log(a[cc]);

结果:

1234-5678-9101-1121

从这个json中获取数据的正确方法是什么?

请指教 感谢

1 个答案:

答案 0 :(得分:0)

尝试从绝对路径读取

curl -X POST
     -H 'Content-Type:application/json'
     -H 'Accept: application/json'
     --data-binary @/full/path/to/test.json
     http://server:port/xyz/abc/blah -v -s

好吧,你已经有了String所以你需要将它转换为javascript变量并使用.notation。建议使用firebug来查看变量中的内容。

 obj = JSON.parse(json);
 obj.cc or obj.cc[0] 

应该给你你想要的东西。