gpt4 book ai didi

javascript - 如何避免错误 Expected 1 argument but got 0 on Typescript

转载 作者:搜寻专家 更新时间:2023-10-30 20:54:43 25 4
gpt4 key购买 nike

这是我的JavaScript 函数

function movements(remove) {
var op = remove ? 'remove' : 'add';
crossvent[op](documentElement, 'selectstart', preventGrabbed); // IE8
crossvent[op](documentElement, 'click', preventGrabbed);
} function move(value) {

这就是它的名字

movements();

您可以在 jkanban.js 中找到引用文件。

现在我必须将其更改为 Typescript,并且在函数调用时出现此错误,

Expected 1 arguments, but got 0

如何在 typescript 中解决这个问题?

最佳答案

只需将问号添加到需要您的函数的参数中,例如:

function movements(remove?) {
// ...
}

关于javascript - 如何避免错误 Expected 1 argument but got 0 on Typescript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54143752/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com