我不断收到以下错误:“错误:找不到模块‘./framer’”

时间:2021-01-19 02:32:09

标签: javascript node.js reactjs google-cloud-platform framerjs

我一直遇到同样的问题。我正在为一家理发店创建一个网站,我正在尝试使用 google api 将事件添加到 google 日历中。我安装了googleapis和framer,但是一直提示找不到framer模块。我什至卸载了framer并重新安装了它,它仍然无法正常工作。当我使用以下代码时出现错误:

const {google} = require('googleapis');

错误信息:

Uncaught Error: Cannot find module './framer'
    at webpackEmptyContext (protocol sync:2)
    at Array.map (<anonymous>)
    at Object../node_modules/http2/lib/protocol/index.js (index.js:46)
    at __webpack_require__ (bootstrap:856)
    at fn (bootstrap:150)
    at Object.<anonymous> (http.js:136)
    at Object../node_modules/http2/lib/http.js (http.js:1262)
    at __webpack_require__ (bootstrap:856)
    at fn (bootstrap:150)
    at Object../node_modules/http2/lib/index.js (index.js:18)
    at __webpack_require__ (bootstrap:856)
    at fn (bootstrap:150)
    at Object.<anonymous> (http2.js:16)
    at Object../node_modules/googleapis-common/build/src/http2.js (http2.js:249)
    at __webpack_require__ (bootstrap:856)
    at fn (bootstrap:150)
    at Object.<anonymous> (apirequest.js:23)
    at Object../node_modules/googleapis-common/build/src/apirequest.js (apirequest.js:304)
    at __webpack_require__ (bootstrap:856)
    at fn (bootstrap:150)
    at Object../node_modules/googleapis-common/build/src/index.js (index.js:24)
    at __webpack_require__ (bootstrap:856)
    at fn (bootstrap:150)
    at Object../node_modules/googleapis/build/src/apis/abusiveexperiencereport/index.js (index.js:17)
    at __webpack_require__ (bootstrap:856)
    at fn (bootstrap:150)
    at Object../node_modules/googleapis/build/src/apis/index.js (index.js:17)
    at __webpack_require__ (bootstrap:856)
    at fn (bootstrap:150)
    at Object../node_modules/googleapis/build/src/googleapis.js (googleapis.js:16)
    at __webpack_require__ (bootstrap:856)
    at fn (bootstrap:150)
    at Object../node_modules/googleapis/build/src/index.js (index.js:17)
    at __webpack_require__ (bootstrap:856)
    at fn (bootstrap:150)
    at Module.<anonymous> (timePicker.js:3)
    at Module../src/components/calendar/timePicker.js (timePicker.js:158)
    at __webpack_require__ (bootstrap:856)
    at fn (bootstrap:150)
    at Module.<anonymous> (Navbar.js:68)
    at Module../src/components/Appointment.js (Appointment.js:120)
    at __webpack_require__ (bootstrap:856)
    at fn (bootstrap:150)
    at Module.<anonymous> (protocol sync:9)
    at Module../src/App.js (App.js:42)
    at __webpack_require__ (bootstrap:856)
    at fn (bootstrap:150)
    at Module.<anonymous> (index.css?bb0a:82)
    at Module../src/index.js (index.js:18)
    at __webpack_require__ (bootstrap:856)

1 个答案:

答案 0 :(得分:3)

兄弟首先要使用 googleapis,你需要一个单独的后端,这是因为 framer 库使用 nodejs 附带的文件系统模块,但在 react 中不可用。毕竟是前端库。一种解决方法是使用 REST API

相关问题