我正在寻求使用Wix页面作为登陆页面。我需要在一个电子邮件地址作为一个URL参数传递到页面,并有它显示在页面上。如何将url参数传递到页面中-以及如何在代码中获取该参数?有人能指出我,或提供一个例子吗?
在参数中发送您的电子邮件https://www.example.com?email=example@example.com
然后使用Wix Location Query查询该参数的值
import wixLocation from 'wix-location';
$w.onReady(function () {
let query = wixLocation.query['email'];
let email = decodeURIComponent(query); //decode uri encoded values in readable format
console.log(email); //this is your email
});