1
有人可以解釋我這個語法嗎?我認爲它沒有用,所以如果你能幫我找到另一種語法。澄清使用的語法
$fichesAEnvoyer = @($fiches | where {($_.TypeFiche -eq '2') -and (($_.Causes -eq '') -or ($_.Causes -eq $null) -or ($_.Causes.Count -eq 0) -or ($_.ActionCorrective -eq '') -or ($_.ActionCorrective -eq $null) -or ($_.DateActionCorrective -eq '') -or ($_.DateActionCorrective -eq $null) -or ($_.ActionPreventive -eq '') -or ($_.ActionPreventive -eq $null) -or ($_.DateActionPreventive -eq '') -or ($_.DateActionPreventive -eq $null))})
我不明白爲什麼有$_
,而不是$fiches
https://technet.microsoft.com/en-us/library /dd347728.aspx –
'$ _'表示管道中的當前對象。如果這不是你的問題,那麼我們需要的不僅僅是_我認爲它不工作。它工作與否。你期望會發生什麼?什麼是'$ fiches'。那裏的情況相當複雜。分別打破它們,看看發生了什麼。沒有樣本數據我們不能幫助。 – Matt
https://technet.microsoft.com/zh-cn/library/hh847768.aspx –