Mini Program's sharing page cannot make a data request.

problem description

a user shares a page with parameters to b user in the upper right corner. After clicking on it, b user can receive the parameters, but does not make a data request.

the environmental background of the problems and what methods you have tried

Environment background: Mini Program
try method: the receiving parameter in onshow is to make a wx.request request and I send it successfully

related codes

/ / Please paste the code text below (do not replace the code with pictures)

  /**
   * --
   */
  onShow: function() {
    this.getbanner()
    this.getinfo()
    this.gettopinfo()

    if (app.globalData.id) {
      this.setData({
        id: app.globalData.id
      })
      this.getbanner()
    this.getinfo()
    this.gettopinfo()
      wx.showToast({
        icon: "none", 
        title: "id=" + app.globalData.id,
        mask: "false",
        duration: 2000,
        success: function(){
          console.log("")
        }
      })
    }

  },

/**
   * 
   */
  onShareAppMessage: function() {
    let shareid = this.data.id;
    return {
      title: "",
      path: `/pages/bulk/bulk?id=${shareid}`,
      success(res) {}
    };
  }

what result do you expect? What is the error message actually seen?

expected result: B can request data through the shared parameters
actually see the error message: the page is just a blank page without any data

Jul.06,2021
Triggered when the

onShow: page is displayed / cut into the foreground.

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-1b3df2f-2bb4f.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-1b3df2f-2bb4f.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?