作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是 Invoke-WebRequest 的包装函数(我删除了很多额外的功能以降低噪音)
function Invoke-SERVERAPI($apiFolder, $adminCredentials, [ValidateSet("GET","POST","PUT","DELETE")] $HTTPmethod, $contentType, $body, $verbose)
{
$resp1HTTPCode= 'Not set'
try
{
if ( ($HTTPmethod -eq 'GET') -or ($HTTPmethod -eq 'DELETE'))
{
$resp1 = Invoke-WebRequest -Uri $apiFolder -Method $HTTPmethod -Credential $adminCredentials -ContentType $contentType -ErrorAction SilentlyContinue -Verbose:$verbose
}
else
{
$resp1 = Invoke-WebRequest -Uri $apiFolder -Body $body -Method $HTTPmethod -Credential $adminCredentials -ContentType $contentType -ErrorAction SilentlyContinue -Verbose:$verbose
}
$resp1HTTPCode = $resp1.StatusCode
}
catch [Exception]
{
$resp1HTTPCode = $_.Exception.Response.StatusCode.Value__
}
return $resp1HTTPCode
}
我需要在动词 POST 和 PUT 上传递 -body 参数,但不要在 GET 和 DELETE 中传递它。我设法用 IF/ELSE 做到了。
有没有像我在开关参数 -Verbose 中那样在 PowerShell 中实现此目的的更好方法?
最佳答案
是的,它涉及形成一个带有参数的哈希表,并使用它来代替或补充参数列表,又名 splatting .在你的情况下,你这样做:
try
{
$ifbody=@{}
if ( ($HTTPmethod -eq 'PUT') -or ($HTTPmethod -eq 'POST'))
{
$ifbody."Body"=$body
}
$resp1 = Invoke-WebRequest -Uri $apiFolder @ifbody -Method $HTTPmethod -Credential $adminCredentials -ContentType $contentType -ErrorAction SilentlyContinue -Verbose:$verbose
$resp1HTTPCode = $resp1.StatusCode
}
@ifbody
将哈希表还原为 -key=value -key2=value2...
cmdlet 或函数的参数序列。
关于powershell - 如何在 PowerShell 中传递可选参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31429505/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!