Data Source Types 📝
Data Source Types
DOCUMENTATION IN-PROGRESS. Use this as notes.
If you are using Webflow Memberships and SA5's User Info library, then SA5 constructs a User Info object whenever a user is currently logged in.
The details of that object can be data-bound.
$user.name
$user.email
You can use this in element data-binding, with the
{{ $user.data.your-field-name }}
Descriptors beginning with $user
Shortcut.
@
can be used as a shortcut in place of $user.
, for example @name
is equivalent to $user.name
wfu-bind = $user.data.link-field
{{ $user.data.link-field }}
This functionality is available when you are using the User Info library.
$query
Shortcut.
?
can be used as a shortcut in place of $query.
, for example ?name
is equivalent to $query.name
$db prefix indicates a data source type of Database.
Database descriptors follow
Shortcut.
+
can be used as a shortcut in place of $db.
, for example +name
is equivalent to $db.name
Or within
How Data binding works
Tagging [wfu-bind]
[wfu-bind-content]
Last modified 1mo ago