【发布时间】:2018-03-09 01:05:51
【问题描述】:
我正在尝试使用 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 dynamic expression handsontable