我认为自己对 PowerShell 中的脚本编写相当陌生,目前在将 API 请求的返回值分配给数据行时遇到问题。
返回的值似乎是一个自定义对象:<APITenant>.FRSHEATServiceReqTemplateParam
如果我尝试将其分配给数据表,它只会显示对象名称而不是值,例如
Name Params
---- ------
Access to Mailbox/Distribution Group OscarStg.FRSHEATServiceReqTemplateParam[]
strSubscriptionRecId : 0221877CF3474492B8ACD9F7C0D94E4A
strDateSubscribed : 10/6/2017 8:09:58 AM
strOrgUnitId : 37393D7C9B554ACEB1F2F2505BA1FF6D
strName : Access to Mailbox/Distribution Group
strItem :
strDescription : Request for access to be added or removed from a
mailbox/group.
strServiceName : Email Messaging Service
strRecId : 21BB52854D524958A5C9F9E0DCAB60CB
lstParameters : {eacc_dpmnt, eacc_req, eacc_reqEmail, eacc_item...}
我可以将实际值分配给数据表吗?
编辑:
$cboTmpl.Add_SelectedIndexChanged({
$tmplRecId = $cboTmpl.SelectedItem["RecId"]
$index = $dTblTmpl.RecId.IndexOf($cboTmpl.SelectedValue)
If($dTblTmpl.Rows[$index].SubId.GetTypeCode() -eq 'DBNull'){
$tmpSubName = $dTblTmpl.Rows[$index].Name.Replace("&", "&")
$dTblTmpl.Rows[$index].SubId = ($Oscar.GetSubscriptionId($connect.sessionKey, `
$txtTenant.Text, $tmpSubName)).subscriptionId
}
If($dTblTmpl.Rows[$index].Params.GetTypeCode() -eq 'DBNull'){
$currParams = ($Oscar.GetPackageData($connect.sessionKey, $txtTenant.Text, $dTblTmpl.Rows[$index].SubId)).srSubscription.lstParameters
$dTblTmpl.Rows[$index].Params = $currParams
}
})
最后一个 if 块调用该方法并将其分配给数据表。我尝试使用 -ExpandProperty 但它同样将字符串 'System.Object[]' 分配为值。
我需要明确定义列对象吗?