How can Didi cube-ui upload components not send options requests?

// vue
<cube-upload
    ref="upload"
    :action="action"
    :simultaneous-uploads="1"
    :process-file="processFile"
    @file-submitted="fileSubmitted" />
          // js
          action: {
            target: `${APIPREFIX}/api/common/upload?appId=${APPID}&appSecret=${APPSECRET}`,
            prop: "base64Value",
            headers: {
              "Content-Type": "multipart/form-data"
            }
          }
Mar.11,2021

sending an options request is the behavior of the browser. If it is a cross-domain POST request, the browser will automatically send the options request.

two choices:
1. Put the request under the same domain
2. The requested address setting allows cross-domain

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3aa88-2af74.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3aa88-2af74.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?