邮件请求预期的Map(int,int)

时间:2016-04-23 20:16:02

标签: javascript node.js api http-post

我需要以什么格式将表单发布请求发送到期望值为map(int,int)的API?或者我应该将其序列化吗?

1 个答案:

答案 0 :(得分:0)

首先,Javascript具有弱类型检查。

其次,您的值可以是StringNumberhttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number)。

我的猜测是你发送一个字符串(如果它在引号中)。如果需要整数,请尝试在值上使用parseInt(theValue)https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/parseInt)来转换它们。