OutputType
属性应该通过intellisense提供类型信息。但是它没有按预期工作。
我在PSReadline和PowerShell ISE中测试了它,它们的工作原理相同。
以下是我正在使用的示例函数:
Function Get-FirstChar
{
[OutputType([String])]
[CmdletBinding()]
param(
[Parameter(Mandatory=$true, ValueFromPipeline=$true)][string[]]$Strings
)
process {
foreach ($str in $Strings) {
$str.SubString(0, 1);
}
}
}
当我这样做时:
"John","Simon" | Get-FirstChar | % { $_.<TAB> }
我得到了建议(无论平台如何):
Equals GetHashCode GetType ToString
然而,当我这样做时:
("John","Simon" | Get-FirstChar).<TAB>
然后我得到所有字符串方法,如SubString
等。
我还尝试过字符串数组String[]
作为输出类型,它仍然无法工作:(
有人可以说如何使用OutputType
属性来表示将从powershell函数返回一个或多个字符串吗?
谢谢
答案 0 :(得分:2)
显然,你的期望是正确的。我必须说我很惊讶它不适用于[string]
,因为它适用于其他复杂类型:
function Get-ProcessEx {
[OutputType([System.Diagnostics.Process])]
param ()
}
Get-ProcessEx | ForEach-Object { $_.}
当我尝试使用[string]
时,我只获得了属性(这对字符串没有帮助,他们唯一拥有的属性是Length
)。我会考虑一个错误,或限制PowerShell ISE和PSReadline等工具响应从函数返回的对象信息的方式。例如。如果你对其他简单类型尝试相同,结果符合预期:
function Get-Int {
[OutputType([int])]
param ()
}
Get-Int | ForEach-Object { $_. }
它似乎也影响了cmdlet,我无法获得定义相同OutputType
的任何现有cmdlet,以便为字符串的方法提供制表符完成:
Get-Command | Where-Object { $_.OutputType.Type -eq [String] }
# Join-Path, not too surprisingly, returns System.String...
Join-Path -Path C:\temp -ChildPath a.txt | ForEach-Object { $_.}
我想无论哪种情况都值得报道PowerShell's UserVoice.