genie如何接收前端javascript里的对象数据?

const goods=[
	{
		id:1,
		num:2,
		price:3
	},
	{
		id:2,
		num:1,
		price:5
	},
	{
		id:3,
		num:5,
		price:7
	}
]

首先将对象转成字符串(不转成字符串Genie报错)通过post请求,发送到Genie,Genie接收到的是字符串类型的数据,经检验是完整的,但由于julia没有对象,初步想用Dict,但格式相差挺大,请问应该怎么接收?

举个例子

route("/user/register", method = POST) do 
  UsersController.register(jsonpayload())
end

欢迎参考我之前写过的一个项目

不用转换为字符串

@AquaIndigo 谢谢,已解决