Wie greife ich in einem Outlet-Connector-HBS auf Benutzerdaten zu?

I am working on a plugin that has to render a notice to some specific users in the top area of the website where notices show up. The plugin outlet that I am trying to override is:
{{plugin-outlet name="top-notices" tagName="" args=(hash currentPath=router._router.currentPath)}}

I am able to get a static version of the connector to work. I created the following file at this path: plugins/discourse-user-throttle/assets/javascripts/discourse/templates/connectors/top-notices/throttle_info.hbs



This line is working file. But the username does not show
{{{user.username}}}

The issue I am facing is that the {{{user.username}}} doesn’t username. How can that be done?

I found out using console log that the user is accessible as currentUser:

{{{currentUser.displayName}}}

1 „Gefällt mir“

Hallo, gibt es Hinweise, wie ich die Eigenschaften von currentUser sehen kann? Ich kann nicht herausfinden, wie oder wo ich es protokollieren/anzeigen kann. Ich möchte auf den Namen von currentUser zugreifen und ihn auf meiner Seite anzeigen.

Hallo,

Wenn Sie meinen, wie man Daten in einer Vorlage protokolliert, können Sie {{log data_here}} verwenden, und dies sollte in der Browserkonsole angezeigt werden.

Sie können auch die API verwenden: api.getCurrentUser().
Zum Beispiel im HTML-\u003chead\u003e Ihres Themes/Komponenten:

<script type="text/discourse-plugin" version="0.8">
  console.log(api.getCurrentUser());
</script>
1 „Gefällt mir“