iT邦幫忙

0

yaml +圖檔 可以用相對路徑嗎?

  • 分享至 

  • xImage

yaml +圖檔 以 OpenAPI (Swagger) Editor 開
可以用相對路徑嗎?

通常是使用網址的方式 ![](網址)
那可以用相對路徑取得圖片 show 在 OpenAPI (Swagger) Editor 嗎?

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

1
海綿寶寶
iT邦大神 1 級 ‧ 2021-11-16 10:22:43

這篇官方文件就有使用相對路徑

    definitions:
      CatalogItem:
        type: object
        properties:
          id:
            type: integer
            example: 38
          title:
            type: string
            example: T-shirt
          image:
            type: object
            properties:
              url:
                type: string
              width:
                type: integer
              height:
                type: integer
            required:
              - url
            example:   # <-----
              url: images/38.png
              width: 100
              height: 100
        required:
          - id
          - title

萬一你的「相對路徑」指的是「本機的檔案路徑」
那就更容易了
你直接設定看看就知道可不可以了
images/38.png
./images/38.png
file://images/38.png

我要發表回答

立即登入回答