因此,当我尝试完全使用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);
                        }
     });
});


我认为睁大眼睛真的可以帮上忙。

感谢您的帮助。

最佳答案

解决方案实际上是在配置中定义完整的功能。因为那是实际传递参数的地方。在这里找到答案:https://github.com/mholt/PapaParse/issues/168

07-25 23:07