我开发了一个PowerShell函数,它执行了许多涉及提供SharePoint团队站点的操作。最终,我想函数返回的URL提供的网站作为字符串,所以在我的函数结束,我有以下代码:
$rs = $url.ToString();
return $rs;
调用这个函数的代码如下所示:
$returnURL = MyFunction -param 1 ...
我期待的是一个字符串,但它不是。相反,它是System.Management.Automation.PSMethod类型的对象。为什么它返回的是那个类型而不是String类型?
您需要在返回之前清除输出。尝试使用Out-Null。这就是powershell返回的工作原理。它返回的不是你想要的变量,而是整个函数的输出。你的例子是:
function Return-Url
{
param([string] $url)
. {
$rs = $url.ToString();
return
} | Out-Null
return $rs
}
$result = Return-Url -url "https://stackoverflow.com/questions/10286164/function-return-value-in-powershell"
Write-Host $result
Write-Host $result.GetType()
结果是:
https://stackoverflow.com/questions/10286164/function-return-value-in-powershell
System.String
致谢至https://riptutorial.com/powershell/example/27037/how-to-work-with-functions-returns