我正在尝试使用reactjs返回默认格式或基于a-grid中单元格渲染器中的某些条件自定义格式
function getSimpleCellRenderer() {
function SimpleCellRenderer() {}
SimpleCellRenderer.prototype.init = function(params) {
if (condition) {
/// set the default format
} else {
/// customize the format
}
};
SimpleCellRenderer.prototype.getGui = function() {
return this.eGui;
};
return SimpleCellRenderer;
}