作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 NPM 包 normalize-wheel在一个寓言项目中。
我已经确认包已经下载到node-modules
文件夹。
符合documentation和 this article我正在使用以下 F# 代码:
type INormalizedWheel =
abstract member pixelX: float
abstract member pixelY: float
abstract member spinX: float
abstract member spinY: float
[<Import("normalizeWheel", "normalize-wheel")>]
let normalizeWheel (we: React.WheelEvent) : INormalizedWheel = jsNative
...
let x = normalizeWheel wheelEvent
但是,只要到达最后一行,就会出现 JS 错误消息
"Object(...) is not a function"
被抛出。在调试器中,
normalizeWheel
的类型显示为
undefined
.
最佳答案
我们来看看 normalize-wheel/index.js
module.exports = require('./src/normalizeWheel.js');
[<Import("default", "normalize-wheel")>]
let normalizeWheel (we: React.WheelEvent) : INormalizedWheel = jsNative
// Or
let normalizeWheel (we: React.WheelEvent) : INormalizedWheel = importDefault "normalize-wheel"
关于f# - 如何从 Fable 中的 NPM 模块导入函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48633043/
我是一名优秀的程序员,十分优秀!