0

我正在使用 Math.js 来解析和评估数学表达式,并遵循https://mathjs.org/docs/custom_bundling.html#numbers-only中的示例,因为我只需要基本的数字支持。 "mathjs": "^8.1.1",列在我的 package.json 依赖项中。

当我运行下面的示例代码时,我得到Module not found: Error: Can't resolve 'mathjs/number'

// use light-weight, numbers only implementations of functions
import { create, all } from 'mathjs/number'

const math = create(all)
4

1 回答 1

0

看起来文档可能还没有跟上。我能够通过更改线路来完成这项工作

import { create, all } from 'mathjs/number';

import { create, all } from 'mathjs/lib/esm/number';
于 2021-01-04T19:40:42.737 回答