因此,我试图编写一个在Facebook上发布的机器人,“您不会(随机动词)是一个(随机名词),对吗?” 每隔一小时。我有一长串动词和名词,分别为“ verbs.txt”和“ nouns.txt”。我遇到的麻烦是让程序读取文件,从文件中选择一个随机单词并将其存储在变量中。我尝试了很多不同的事情,但没有结果,我将代码运行回该版本,除了未定义的变量。let postContents = "You wouldn't" + verb + " a " + noun + ", would you?";FB.api('me/feed', 'post', { message: postContents }, res => { if (!res || res.error) { return console.error(!res ? 'error occurred' : res.error); } console.log(`Post ID: ${res.id}`);});
添加回答
举报
0/150
提交
取消