我使用的葡萄宝石版本为0.19.0。
我传递了以下数据:
{references: [{x: '10'}, {x: '20'}, {x: '30'}]}
服务器上的验证部分是:
params do
optional :references, type: Array do
optional :x, type: String
end
end
这不会在服务器上输入我的API调用,客户端会收到以下响应:
responseText: "{"error":"references is invalid"}"
如何传递散列数组?