我正在遵循FullStackOpen的指南,并因错误而卡住。 Error Picture
我什至都不知道该如何调用manifest.json,因为我仍然是这方面的初学者。我正在使用NPM并按照教程中的描述注入了axios和一个链接到localhost:3001的json服务器。
这是我的清单文件,它只是npm上create-react-app自动生成的文件。
void ADDVEHICLE() {
FILE *fp;
char CAR[50];
fp = fopen("FILE.txt", "a");
if (!fp) {
printf("ERROR");
}
// flush buffer here!
scanf("%s"); // this reads any characters remaining in input buffer then ignores them
printf("\n Manufacturer");
fgets(CAR, sizeof(CAR), stdin);
fprintf(fp, "%s", CAR);
fclose(fp);
}
我正在localhost:3001上运行一个只有一个对象数组的简单服务器,这称为localhost:3001 / notes
任何帮助将不胜感激。
谢谢。