收藏
回答

小程序分享到朋友圈,可以动态设置页面标题吗?

  onShareTimeline:function(res){
    var that = this;
    wx.setNavigationBarTitle({
      title: 'xxx'
    });
    return {
      title: xxx,
      imageUrl: xxx,
      path: xxx
    }
  },
z这样写,分享出来的页面,标题还是空的(该页面json没有设置标题)
回答关注问题邀请回答
收藏

2 个回答

  • Admin ²º²⁴
    Admin ²º²⁴
    2020-08-03
    onLoad里写入:
              wx.setNavigationBarTitle({
                title: 'xxxxxxxxxxxxxxxx',
              });
    
    2020-08-03
    有用
    回复 2
    • Wilson
      Wilson
      2020-08-03
      试过了,不行的
      2020-08-03
      回复
    • Admin ²º²⁴
      Admin ²º²⁴
      2020-08-03回复Wilson
      在分享这里还需要设置下title,
      const title="测试,可以的";
          return {
            title: title,
            imageUrl: xxx,
            path: xxx
          }
      2020-08-03
      回复
  • 微喵网络
    微喵网络
    2020-08-03

    页面标题在onLoad里设置

    2020-08-03
    有用
    回复
登录 后发表内容
问题标签