因此,当我尝试使用papaparse读取变量时,我得到以下错误:TypeError:wpcc_results未定义。
我真的看不出我的代码有什么问题:
$('.wpcc_gen_box_form').submit(function(event) {
// stop the form from submitting the normal way and refreshing the page
event.preventDefault();
$('#wpcc_csv_file').parse({
complete: function(wpcc_results) {
console.log(wpcc_results.data);
}
});
});
我认为新鲜的眼睛在这里会有所帮助。
我感谢任何帮助。
答案 0 :(得分:1)
解决方案实际上是在配置中定义完整的功能。因为那是参数实际传递的地方。答案在这里找到:https://github.com/mholt/PapaParse/issues/168