简体   繁体   中英

How can set post value and unset it by observer magento 2

I want to get data by current url so i have set post value, please see my code

if (currenturl = 'https://example.com/delhi.html') {
      $this->request->setPostValue('location','289');
}

But it set for all pages, i want to unset it if another url open. Please anyone idea for that

Try this,

$this->request->setPostValue('location','');
if (currenturl = 'https://example.com/delhi.html') {
      $this->request->setPostValue('location','289');
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM