gpt4 book ai didi

login - 自定义 meteor loginButtons 助手以显示我的帐户按钮

转载 作者:行者123 更新时间:2023-12-05 00:28:07 30 4
gpt4 key购买 nike

我想自定义 meteor loginButtons 助手以添加“我的帐户”选项,例如 Telescope :

  • https://github.com/SachaG/Telescope

  • 在这个项目中,他们使用 loginButtons 助手:
  • https://github.com/SachaG/Telescope/blob/master/client/views/common/nav.html

  • 并有一些用于登录和注册的自定义模板:
  • https://github.com/SachaG/Telescope/blob/master/client/views/users/user_signin.html
  • https://github.com/SachaG/Telescope/blob/master/client/views/users/user_signup.html

  • 但是我看不到在哪里可以为用户登录时创建自定义模板,该模板将显示:
  • 修改密码
  • 我的帐号
  • 登出

  • 我读过了 :
    How to style Meteor.js loginButtons?

    但这只是关于 CSS

    并观看:
    https://www.eventedmind.com/feed/97d0164c-8f71-46fe-819b-df8df3704546

    但它不使用 {{loginButtons}} 助手

    我使用 bootstrap 和帐户-ui-bootstrap-dropdown。

    最佳答案

    您正在寻找的代码是 here:

    Template.nav.rendered = function() {
    if(!Meteor.user()) {
    $('.login-link-text').text("Sign Up/Sign In");
    } else {
    $('#login-buttons-logout').before('<a href="/account" class="account-link button">My Account</a>');
    }
    };

    关于login - 自定义 meteor loginButtons 助手以显示我的帐户按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19373563/

    30 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com