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] });