Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
papa.parse が JavaScript を使って行う処理で、「csv」ファイルのヘッダーを大文字に変更することはできますか?!
前もって感謝します。
beforeFirstChunk: function(chunk) { var rows = chunk.split( /\r\n|\r|\n/ ); var headings = rows[0].toUpperCase(); rows[0] = headings; return rows.join("\r\n"); },
「beforeFirstChunk」をサポートすることでこの問題は解決しましたが、構成内で「worker: true」を使用すると、既知のバグのように例外がトリガーされます。