因此,我试图在Wix上获取Corvid,以在关闭模态框时将用户重定向到最后一个URL。
在我的网站范围内的代码中(在“网站”标签中)
// SET CURRENT PAGE URL TO BE USED FOR NAVIGATING BACK TO LAST PAGE
import {session} from 'wix-storage';
import wixLocation from 'wix-location';
let previousPageURL;
$w.onReady(function () {
previousPageURL = session.getItem("page");
session.setItem("page", wixLocation.url);
});
我在这里获取当前URL,然后将其设置为我相信的previousPageURL?
然后我继续尝试在特定页面上使用此变量
在我的页面上(该页面的页面标签中)
import wixWindow from 'wix-window';
import wixLocation from 'wix-location';
wixWindow.openModal("myurlformodalboxcontent.com", {
"width": 100,
"height": 100
})
.then(() => {
wixLocation.to(previousPageURL);
});
我认为我可以在此处使用previousPageURL重定向到此存储的信息,我哪里出错了?
谢谢