Defines a backend function that can be called from the frontend.
The webMethod()
function is a wrapper used to export functions from backend code that can be called from the frontend.
The permissions
parameter is used to define the permissions needed to call the function in frontend code. Import
the Permissions
enum from the wix-web-module
module to define the permissions.
The permission options are:
Permissions.Anyone
: Any site visitor can call the function.Permissions.Admin
: Only site admins can call the function.Permissions.SiteMember
: Only site members can call the function.Web methods must be defined in files with a .web.js
extension.
Permissions needed to call the function in frontend code.
Function to export.