0

这是我的问题,

这是我的字符串:

    var body = {
        message: "Hello",
        properties: [
            { text: 'Link Test 1', href: 'http://hei.it'},
            { text: 'Link Test 2', href: 'http://hei.it/rai1'},
        ],
        actions: [
            { name: 'Shawn', link: 'http://hu.com'}
        ]
    };

如果我使用

querystring.stringify(body);

我回来

 message=Hello&properties=&properties=&actions=

查询字符串被窃听还是我错了?

4

1 回答 1

0

到目前为止,我找到了一个名为 node-qs 的库,它输出:

message=Hello&actions[0][name]=Shawn&actions[0][link]=http%3A%2F%2Fhei.com

于 2012-06-21T11:47:45.723 回答