gpt4 book ai didi

javascript - Handsontable getValue() 函数表达式中的 HOT-in-HOT 动态 Handsontable

转载 作者:行者123 更新时间:2023-11-28 04:09:07 25 4
gpt4 key购买 nike

我正在尝试使用 Handsontable 版本 0.34.4CE/1.14.2 PRO 在 Handsontable (HOT-in-HOT) 中创建 Handsontable。根据此处提供的文档,一切正常... Handsontable但我想使用多个多维数组动态创建所有这些。

问题是,当您通常创建 Handsontable 时,您可以很好地分配所有变量,并且当您动态执行此操作时,它也可以工作。当您在 Handsontable 中引入自定义函数时,动态创建它们并不像通常那样简单。

正如您在下面的代码中看到的,我意识到我需要将 getValue() 函数作为表达式传递才能使其工作。问题在于表达式是动态创建的,因此函数中的变量并未在该函数的本地范围内最终确定,而是在函数运行时尝试访问。我需要变量来保存/设置/分配给函数中的变量,并尝试在创建表达式后调用。

文档中的正常 HOT-in-HOT...

  var
carData = getCarData(),
container = document.getElementById('example1'),
manufacturerData,
colors,
color,
colorData = [],
hot;

manufacturerData = [
{name: 'BMW', country: 'Germany', owner: 'Bayerische Motoren Werke AG'},
{name: 'Chrysler', country: 'USA', owner: 'Chrysler Group LLC'},
{name: 'Nissan', country: 'Japan', owner: 'Nissan Motor Company Ltd'},
{name: 'Suzuki', country: 'Japan', owner: 'Suzuki Motor Corporation'},
{name: 'Toyota', country: 'Japan', owner: 'Toyota Motor Corporation'},
{name: 'Volvo', country: 'Sweden', owner: 'Zhejiang Geely Holding Group'}
];
colors = ['yellow', 'red', 'orange', 'green', 'blue', 'gray', 'black', 'white'];

while (color = colors.shift()) {
colorData.push([
[color]
]);
}

hot = new Handsontable(container, {
data: carData,
colHeaders: ['Car', 'Year', 'Chassis color', 'Bumper color'],
columns: [
{
type: 'handsontable',
handsontable: {
colHeaders: ['Marque', 'Country', 'Parent company'],
autoColumnSize: true,
data: manufacturerData,
getValue: function() {
var selection = this.getSelected();

// Get always manufacture name of clicked row
return this.getSourceDataAtRow(selection[0]).name;
},
}
},
{type: 'numeric'},
{
type: 'handsontable',
handsontable: {
colHeaders: false,
data: colorData
}
},
{
type: 'handsontable',
handsontable: {
colHeaders: false,
data: colorData
}
}
]
});

我正在尝试动态执行的 HOT-in-HOT 设置...

if(data_arr[0][key][2]['cell_type'] == "handsontable" && data_table_1_col_headers_options_arr[key][0] != "NA")
{
data_table_1_columns_arr[count]['handsontable'] = new Array();

data_table_1_columns_arr[count]['handsontable']['colHeaders'] = data_arr[3][key][1][0];
data_table_1_columns_arr[count]['handsontable']['autoColumnSize'] = true;
data_table_1_columns_arr[count]['handsontable']['data'] = data_arr[3][key][0];

//// THE ISSUE IS IN THE EXPRESSION BELOW. ////
var temp_field_value_to_use = data_arr[3][key][1][1];
var hot_in_hot_function = function ()
{
var selection = this.getSelected();
var field_use = temp_field_value_to_use;
return this.getSourceDataAtRow(selection[0])[field_use];
};

data_table_1_columns_arr[count]['handsontable']['getValue'] = hot_in_hot_function;
}

在上面的动态版本中可以看到,Handsontable 是由多个多维数组定义的,其中仅显示了与此问题相关的代码。其他地方还有更多代码用于配置表的其余部分。该特定部分从细胞类型的条件开始。如果单元格类型 id Handsontable,则为 HOT-in-HOT 创建单元格选项。请注意,此动态创建会构建一个父 Handsontable,其中包含使用不同 HOT-in-HOT 的多个列。问题出在注释下方代码的表达式版本中。变量“temp_field_value_to_use”是 HOT-in-HOT 中我想要用于父 Handsontable 中的值的列的索引。由于此值/列索引根据父 Handsontable 中具有 HOT-in-HOT 的列而变化,因此该变量必须动态保存到表达式中。现在,当代码全部运行时,变量“temp_field_value_to_use”始终给出最后分配的值,这意味着它不是与表达式一起动态保存,而是为每个 HOT-in-HOT 使用相同的函数/表达式。

最佳答案

我认为由于表达式是动态创建的,问题在于如何创建表达式以及如何设置其范围。经过大量研究后,我找到了解决方案。该解决方案使用所谓的 JavaScript Closure,它是一个自调用函数。如果可以的话,请补充,或者做得更好,我希望这对大家有所帮助。我还要求 Handsontable 也添加他们的文档。

您可以在下面的代码中看到,外部函数被分配了动态变量,因此作用域发生了变化,因此内部函数使用 otter 变量而不是动态 Handsontable 选项配置循环作用域中的变量。

if(data_arr[0][key][2]['cell_type'] == "handsontable" && data_table_1_col_headers_options_arr[key][0] != "NA")
{
data_table_1_columns_arr[count]['handsontable'] = new Array();

data_table_1_columns_arr[count]['handsontable']['colHeaders'] = data_arr[3][key][1][0];
data_table_1_columns_arr[count]['handsontable']['autoColumnSize'] = true;
data_table_1_columns_arr[count]['handsontable']['data'] = data_arr[3][key][0];

var temp_field_value_to_use = data_arr[3][key][1][1];
//// JavaScript Closure expression below. ////
var hot_in_hot_function = (function ()
{
var field_use = temp_field_value_to_use;
return function ()
{
var selection = this.getSelected();
return this.getSourceDataAtRow(selection[0])[field_use];
}
})();

data_table_1_columns_arr[count]['handsontable']['getValue'] = hot_in_hot_function;
}

关于javascript - Handsontable getValue() 函数表达式中的 HOT-in-HOT 动态 Handsontable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46449636/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com