我试图将本地文件json附加到我的获取和异步文件中,但它并没有更改json数据中的任何内容,并且仍然为空。 我的ison文件只是一个空数组,我想将对象数据推送到该json数据。
这是我的代码:
static async writeFile( file ) {
try {
let header = await fetch( 'employee.json' )
const head = header.headers;
head.append( 'json', 'yes' );
head.get( 'json' );
const data = await header.json( );
console.log( data )
}
catch( e ) {
console.log( e )
}
}