为什么我会收到 "Cannot find module 'jsonLogic'" 错误?

Why am I getting a "Cannot find module 'jsonLogic'" error?

我已经安装了 JsonLogic using Yarn

yarn add json-logic-js

当我尝试实现一个简单的例子时:

import jsonLogic from 'jsonLogic';

jsonLogic.apply({ '==': [1, 1] });

我收到以下错误:

Cannot find module 'jsonLogic'

为什么Node找不到JsonLogic模块?我该如何解决这个问题?

您引用了一个不存在的模块。导入 json-logic-js 模块,而不是不存在的 jsonLogic 模块。例如:

import jsonLogic from 'json-logic-js';

jsonLogic.apply({ '==': [1, 1] });