0

我使用 Invoke-RestMethod 通过 REST API 检索有关文件夹中一堆文档的元数据。虽然该方法返回 PSCustomObject 中的所有数据,但我不知道如何访问所有这些数据。自定义对象具有属性“page”、“page_total”、“limit”(所有 System.Int32)和“data”(System.Object[]),如下所示。

有 2 页,因为“数据”“限制”是每页 25 个,但总共有 30 个“数据”条目。如何访问第 2 页上的 5 个数据条目?我什至不知道从哪里开始,因为我对 PSCustomObjects 没有任何经验。

提前致谢!

 TypeName: System.Management.Automation.PSCustomObject

Name              MemberType   Definition                                                                                                                                                             
----              ----------   ----------                                                                                                                                                             
Equals            Method       bool Equals(System.Object obj)                                                                                                                                         
GetHashCode       Method       int GetHashCode()                                                                                                                                                      
GetType           Method       type GetType()                                                                                                                                                         
ToString          Method       string ToString()                                                                                                                                                      
data              NoteProperty System.Object[] data=System.Object[]                                                                                                                                   
definitions       NoteProperty System.Management.Automation.PSCustomObject definitions=@{create_date=; create_user_id=; description=; favorite=; icon=; id=; mime_type=; modify_date=; modify_user_...
definitions_map   NoteProperty System.Management.Automation.PSCustomObject definitions_map=@{name=System.Object[]}                                                                                    
definitions_order NoteProperty System.Object[] definitions_order=System.Object[]                                                                                                                      
limit             NoteProperty System.Int32 limit=25                                                                                                                                                  
page              NoteProperty System.Int32 page=2                                                                                                                                                    
page_total        NoteProperty System.Int32 page_total=2                                                                                                                                              
range_max         NoteProperty System.Int32 range_max=25                                                                                                                                              
range_min         NoteProperty System.Int32 range_min=1                                                                                                                                               
sort              NoteProperty System.String sort=asc_name                                                                                                                                            
total_count       NoteProperty System.Int32 total_count=30                                                                                                                                            
where_facet       NoteProperty System.Object[] where_facet=System.Object[]                                                                                                                            
where_name        NoteProperty System.String where_name=                                                                                                                                              
where_type        NoteProperty System.Object[] where_type=System.Object[]
4

0 回答 0