美文网首页
Taro 获取url ? 传参

Taro 获取url ? 传参

作者: 张思学 | 来源:发表于2020-04-19 21:06 被阅读0次

我们常常会用url?传递参数。话不多说直接代码

// 跳转按钮

<Navigator url={`/pages/details/details?id=${item.id}`} hoverClass="none">跳转详情</Navigator>
this.$router.params

// 跳转页面接收

componentWillMount() {
    console.log(this.$router.params);
 }

相关文章

网友评论

      本文标题:Taro 获取url ? 传参

      本文链接:https://www.haomeiwen.com/subject/atmibhtx.html