Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用 c# 编写了一个 wcf 服务。从 Jquery 我调用服务并返回一个列表。我现在想返回多个列表。这可能吗?
该列表正在作为 Json 传回。我可以以某种方式创建一个列表数组吗?抱歉,我是新手,所以这个问题可能太模糊了。
您可以退回任何您想要的东西。List<List<T>>如果需要,请返回 a 。返回一个包含成员的复杂类型SomeCustomType,每个成员都是 type List<T>。您的限制是函数只能返回一个值(C# 限制多于 WCF 限制,但仍然是有效限制)。除此之外,您可以自由地使该值变得尽可能复杂。
List<List<T>>
SomeCustomType
List<T>