我正在从我的 jQuery 调用 Web 服务来获取两者Staff
和Student
详细信息。在我的 Web 服务中,我有 Staff 和 Students 的值,并将这些值作为字符串数组返回。虽然返回值只是将这两个序列化为
[WebMethod(EnableSession = true)]
public string[] fetchStudentStaff(string sectionId)
{
string student;
string staff;
////
////
student = jsonSerialize.Serialize(studentList);
staff = jsonSerialize.Serialize(staffList);
return new string[] { student, staff };
}
在这里,我有一个变量category
需要提及他是员工还是学生。并在我的 jQuery 部分收到这个,
[
[
[
{
"Name": "shanish",
"StudentId": "12",
"Category": "Student",
"Mobile": "8147708287",
"Email": "shanish@gmail.com"
}
]
],
[
[
{
"Name": "shanish",
"StaffId": "78",
"Category": "Staff",
"Mobile": "8147708287",
"Email": "shanish@gmail.com"
}
]
]
]
在这里,我尝试使用jQuery.parseJSON(data.d)
对结果进行分组,但结果是null
,我需要用student
and对结果进行分类staff
,这里我有一名学生和一名员工,对于 5 名学生和 2 名员工的情况,我需要将学生存储在单独的变量和 2 个工作人员在一个单独的变量中。
我不知道如何实现这一点,任何人都可以在这里帮助我...在此先感谢