web200 / magento-elasticsuite-ajax
为 elasticsuite 模块添加 Ajax 导航的 Magento 2 模块
v1.0.2
2023-01-12 22:25 UTC
Requires
- php: ^7.0|^8.0
README
为 elasticsuite 模块添加 Ajax 导航的 Magento 2 模块
安装
$ composer require "web200/magento-elasticsuite-ajax":"*"
特性
- 类别页面上的 Ajax 导航(类别 / 选项卡 / 列表)
- 无限导航页面。(可以在“商店 > 配置 > Elasticsuite > Ajax 设置”中启用或禁用)
Varnish
为了缓存经典页面和 xhr 请求,您需要在 varnish 中设置不同的缓存。感谢 @mfickers
sub vcl_hash {
...
# Sort AJAX requests distinct from regular requests
if (req.http.X-Requested-With == "XMLHttpRequest"){
hash_data(req.http.X-Requested-With);
}
...
}