Has*_*tin 3 javascript node.js typescript reactjs papaparse
我在打字稿中使用Papaparse lib。
import Papa from 'papaparse';
Papa.parse(filePath, {
download: true,
header: true,
dynamicTyping: true,
skipEmptyLines: true,
};
Run Code Online (Sandbox Code Playgroud)
filepath类型是string
我在 filePath 上收到错误:
No overload matches this call. The last overload generated the following error. The 'string' type argument is not assignable to the 'unique symbol' type parameter.
Run Code Online (Sandbox Code Playgroud)
在@types/papaparse中,有
/**
* Parse local files
* @param file a File object obtained from the DOM.
* @param config a config object which contains a callback.
* @returns Doesn't return anything. Results are provided asynchronously to a callback function.
*/
// tslint:disable-next-line: no-unnecessary-generics
export function parse<T, TFile extends LocalFile = LocalFile>(file: TFile, config: ParseLocalConfig<T, TFile>): void;
/**
* Parse remote files
* @param url the path or URL to the file to download.
* @param config a config object.
* @returns Doesn't return anything. Results are provided asynchronously to a callback function.
*/
// tslint:disable-next-line: no-unnecessary-generics
export function parse<T>(url: string, config: ParseRemoteConfig<T>): void;
Run Code Online (Sandbox Code Playgroud)
我添加了complete功能并更新了我的代码,如下所示:
import { parse, ParseResult } from 'papaparse';
parse(filePath, {
download: true,
header: true,
dynamicTyping: true,
skipEmptyLines: true,
complete: function (results: ParseResult<Record<string, unknown>>) {
/* ...code stuff... */
}
};
Run Code Online (Sandbox Code Playgroud)
它有效。谢谢