0

我已经使用Yarn安装了JsonLogic

yarn add json-logic-js

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

import jsonLogic from 'jsonLogic';

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

我收到以下错误:

Cannot find module 'jsonLogic'

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

4

1 回答 1

1

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

import jsonLogic from 'json-logic-js';

jsonLogic.apply({ '==': [1, 1] });
于 2020-01-10T21:40:46.137 回答