答案 0 :(得分:0)
似乎你的主题在前端部分更新过程中做了一些事情。你应该看一下文件 供应商/的magento /模块的客户/视图/前端/网络/ JS /视图/ customer.js 并添加条件并强制刷新部分
define([
'uiComponent',
'Magento_Customer/js/customer-data'
], function (Component, customerData) {
'use strict';
return Component.extend({
initialize: function () {
this._super();
var someCondition = true;
this.customer = customerData.get('customer');
if(someCondition === true){
customerData.reload(['customer']);
}
}
});
});