2 回答
TA贡献1827条经验 获得超8个赞
您可以尝试按照以下步骤设置Samesite=None 。
文件:etc/frontend/di.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<type name="Magento\Framework\View\Element\Js\Cookie">
<plugin name="afterGetPath" type="namespace\module\Plugin\View\Element\Js\ManagePath" sortOrder="10"/>
</type>
</config>
文件:插件/视图/元素/Js/ManagePath.php
namespace namespace\module\Plugin\View\Element\Js;
use Magento\Framework\View\Element\Js\Cookie;
class ManagePath
{
public function afterGetPath(\Magento\Framework\View\Element\Js\Cookie $subject, $path)
{
if (preg_match('/SameSite/', $path)) {
$path_array = explode(';', $path);
$path = $path_array[0];
}
return $path;
}
}
文件:etc/di.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd">
<preference for="Magento\Framework\Session\Config\ConfigInterface" type="namespace\module\Session\CustomConfig"/>
</config>
文件:会话/CustomConfig.php
namespace namespace\module\Session;
use Magento\Framework\Session\Config as DefaultConfig;
class CustomConfig extends DefaultConfig
{
public function setCookiePath($path, $default = null)
{
parent::setCookiePath($path, $default);
$path = $this->getCookiePath();
//check and update path of cookie
if (!preg_match('/SameSite/', $path)) {
$path .= '; SameSite=None';
$this->setOption('session.cookie_path', $path);
}
return $this;
}
}
注意:用您的命名空间和模块替换命名空间和模块。
TA贡献1827条经验 获得超7个赞
由于我没有足够的声誉来评论已接受的答案,我必须指出,对我来说它不起作用,因为 Chrome 要求将 SameSite 的所有 cookie 设置为“无”以标记为安全。修复添加:
$path .= '; SameSite=None ; secure';
如果不将它们标记为安全,我将无法将商品添加到购物车。
为我工作,希望它能帮助遇到同样问题的其他人。
- 2 回答
- 0 关注
- 96 浏览
添加回答
举报