Board logo

标题: [问题求助] 【已解决】PowerShell用hash表+函数的方式转换为json字符串 [打印本页]

作者: 5i365    时间: 2022-5-15 06:58     标题: 【已解决】PowerShell用hash表+函数的方式转换为json字符串

本帖最后由 5i365 于 2022-5-15 09:06 编辑

下面的代码, 是用一行字符串来表达的json的, 不太好观察结构!

我想把它改成 hash表+函数的方式, 在frames[]处卡壳了, 求高手指引, 提前感谢!
原代码:
  1. $BuildName = 'he'
  2. $Message = 'bei'
  3. $Payload = '{"priority":"critical","icon_type":"alert","lifeTime":2000,"model":{"frames":[{"icon":"555","text":"' + $BuildName + ' BUILD FAILED! ' + $Message + '"}],"sound":{"category":"alarms","id":"alarm6","repeat":2},"cycles":0}}'
  4. $Payload
复制代码
我的代码:
  1. $Payload = @{
  2.         "priority"  = "critical"
  3.         "icon_type" = "alert"
  4.         "lifeTime"  = 2000
  5.         "model" = @{
  6.                 "frames" = "卡这里了"
  7.                 "sound"  = @{
  8.                         "category" = "alarms"
  9.                         "id"     = "alarm6"
  10.                         "repeat"   = 2
  11.                 }
  12.                 "cycles" = 0
  13.         }
  14. } | ConvertTo-Json
  15. $Payload
复制代码

作者: flashercs    时间: 2022-5-15 08:19

  1. $Payload = @{
  2.         "priority"  = "critical"
  3.         "icon_type" = "alert"
  4.         "lifeTime"  = 2000
  5.         "model" = @{
  6.                 "frames" = @(
  7.                 @{
  8.                 icon="555"
  9.                 text=$BuildName + ' BUILD FAILED! ' + $Message
  10.                 }
  11.                 )
  12.                 "sound"  = @{
  13.                         "category" = "alarms"
  14.                         "id"     = "alarm6"
  15.                         "repeat"   = 2
  16.                 }
  17.                 "cycles" = 0
  18.         }
  19. } | ConvertTo-Json -Depth 10
复制代码

作者: 5i365    时间: 2022-5-15 09:04

回复 2# flashercs


   感谢大侠指引, 原来我卡在这个参数了, -Depth 10




欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2