📅  最后修改于: 2022-03-11 15:02:53.383000             🧑  作者: Mango
The in operator only works on objects. You are using it on a string. Make sure your value is an object before you using $.each. In this specific case, you have to parse the JSON:
$.each(JSON.parse(myData), ...);