Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

分享后页面参数丢了 #1646

Closed
gclsoft opened this issue Dec 22, 2018 · 8 comments
Closed

分享后页面参数丢了 #1646

gclsoft opened this issue Dec 22, 2018 · 8 comments
Assignees
Labels
question Further information is requested

Comments

@gclsoft
Copy link

gclsoft commented Dec 22, 2018

https://github.com/NervJS/taro-v2ex

thread_detail.tsx:

 componentWillMount () {
    //debugger;
    console.log("componentWillMount")
    console.log(this.$router.params)

    this.setState({
      thread: GlobalState.thread
    })
  }
  /**
   * 用户点击右上角分享
   */
  onShareAppMessage () {
    const { thread } = this.state
    const url='/pages/thread_detail/thread_detail?tid='+ thread.tid;
    console.log("url="+url);

    return {
      title: thread.title,
      url: url
    }
  }

  async didMount(tid){
    try {
      // debugger

      const [{ data }, { data: [ { content_rendered } ] } ] = await Promise.all([
        Taro.request<IThread[]>({
          url: api.getReplies({
            'topic_id': tid
          })
        }),
        Taro.request<IThread[]>({
          url: api.getTopics({
            'id': tid
          })
        })
      ])
      this.setState({
        loading: false,
        replies: data,
        content: prettyHTML(content_rendered)
      })
    } catch (error) {
      Taro.showToast({
        title: '载入远程数据错误'
      })
    }
  }
  async componentDidMount () {

     // debugger

      console.log("componentDidMount")
      console.log(this.$router.params)
      let { tid } = this.$router.params;
      if(!tid){
        tid=GlobalState.thread.tid
      }

      console.log("tid="+tid);

      this.didMount(tid)

  }

在手机上分享了文章打开是空的参数:
image

@taro-bot
Copy link

taro-bot bot commented Dec 22, 2018

欢迎提交 Issue~

如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏

如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。

Good luck and happy coding~

@yuche
Copy link
Contributor

yuche commented Dec 24, 2018

你这个是原来修改之后的版本吗

@gclsoft
Copy link
Author

gclsoft commented Dec 24, 2018

@yuche 是的,代码增加了分享功能, 但是分享出去的?tid=123变没了

@luckyadam
Copy link
Member

image

@luckyadam luckyadam added question Further information is requested answered labels Dec 25, 2018
@taro-bot
Copy link

taro-bot bot commented Dec 25, 2018

Hello~

您的问题楼上已经有了确切的回答,如果没有更多的问题这个 issue 将在 15 天后被自动关闭。

如果您在这 15 天中更新更多信息自动关闭的流程会自动取消,如有其他问题也可以发起新的 Issue。

Good luck and happy coding~

@gclsoft
Copy link
Author

gclsoft commented Dec 25, 2018

@luckyadam 谢谢老大

@gclsoft gclsoft closed this as completed Dec 25, 2018
@diamont1001
Copy link

我也在这里踩坑了,再次提醒下大家,这里返回的字段是 path 而不是 url

onShareAppMessage () {
    return {
      title: '标题',
      path: '/pages/detail/index' // 看清楚,这里是 path,不是 url
    }
  }

@luckyadam
Copy link
Member

@diamont1001 代码有智能提示的

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

4 participants