我正在使用电子,无论如何要获取主体的价值,我都需要像下面的executeJavaScript一样返回值?感谢您的阅读
<form method="POST" action="{{ route('logout') }}">
@csrf
<button type="submit">Logout</button>
</form>
答案 0 :(得分:0)
显然,正如我在docs中看到的那样,您可以使用$params = @("/c ipconfig /all")
Invoke-Command -ComputerName $Computer -Credential $Cred -ScriptBlock {
param(
$params
)
Write-Host "We passed in the following parameters: '$params'"
& "cmd.exe" $params
} -ArgumentList $params
函数来获取它。
then