代码之家  ›  专栏  ›  技术社区  ›  quad

如何在redmine中使用REST更新文件类型的自定义字段?

  •  0
  • quad  · 技术社区  · 7 年前

    正确上传文件后,请使用:

    curl --data-binary "@test.pdf" -H "Content-Type: application/octet-stream" -X POST -H "X-Redmine-API-Key: e1d815b8963e7b3950d4bea47959f874be755a2c" https://redmine-dev/uploads.xml
    

    我得到我的令牌:

    <?xml version="1.0" encoding="UTF-8"?>
    <upload>
      <id>15</id>
      <token>15.cb4...</token>
    </upload>
    

    <?xml version="1.0"?>
    <issue>
      <custom_fields type="array">
        <custom_field id="4">
          <token>15.cb4...</token>
          <filename>test.pdf</filename>
        </custom_field>
      </custom_fields>
    </issue>
    
    <?xml version="1.0"?>
    <issue>
      <custom_fields type="array">
        <custom_field id="4">
          <value>
            <token>15.cb4...</token>
            <filename>test.pdf</filename>
          </value>
        </custom_field>
      </custom_fields>
    </issue>
    
    <?xml version="1.0"?>
    <issue>
      <custom_fields type="array">
        <custom_field id="4">
          <value>15</value>
        </custom_field>
      </custom_fields>
    </issue>
    

    每次之后,数据库中的字段被清除。

    在每个自定义字段旁边更新不同的自定义字段(基于文本和数字)是可行的。我还检查了文档,没有详细说明如何使用REST更新自定义附件。

    1 回复  |  直到 7 年前
        1
  •  0
  •   quad    7 年前

    在查看代码后,这很容易,但令牌必须属于以前未使用的附件。

    <?xml version="1.0"?>
     <issue>
       <custom_fields type="array">
         <custom_field id="4">
           <value>
             <token>15.cb4...</token>
           </value>
         </custom_field>
       </custom_fields>
     </issue>