我正在使用需要输入参数的API,并且在传递我的输入参数后,应用程序崩溃,提示public abstract class GenericDao implements IGenericDao {
@PersistenceContext
private EntityManager entityManager;
我不知道我做错了什么,但是下面是我需要的参数
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Invalid type in JSON write
我传递参数的方式是
{
"destination":{
"lat": 6.4372279,
"lng": 3.467530600000032
},
"meta": {
"tolls": [
{
"name": "Admiral",
"count": 2
},
{
"name": "Gate",
"count": 4
}
]
},
"distance": 12.0,
"champion_id":"7139a07d"
}
任何帮助将不胜感激