Typescript:如何为方法参数中使用的函数回调定义类型(作为任何函数类型,不是通用的)


313

目前,我的类型定义为:

interface Param {
    title: string;
    callback: any;
}

我需要类似的东西:

interface Param {
    title: string;
    callback: function;
}

但第二个不被接受。

Answers:


285

全局类型Function用于此目的。

此外,如果您打算使用0个参数调用此回调并且将忽略其返回值,则该类型将() => void匹配不带参数的所有函数。



13
这不是基本类型,因为您应该定义参数并返回值。类似于callback:(number:number)=> void; 对于类型检查,它比回调函数有用得多:将会。
kpup

@kpup要清楚,你说不是要使用大写F Function如图这个答案的第一行,并说第二段(使用的类型() => void或任何使用情况相符)是首选?
鲁芬

2
FWIW,有关函数类型的文档可在此处获得

191

v1.4中的Typescript具有type用于声明类型别名的关键字(类似于typedefC / C ++中的a)。您可以这样声明您的回调类型:

type CallbackFunction = () => void;

该函数声明一个不带参数且不返回任何值的函数。接受零个或多个任何类型的参数且不返回任何值的函数将是:

type CallbackFunctionVariadic = (...args: any[]) => void;

然后您可以说,例如

let callback: CallbackFunctionVariadic = function(...args: any[]) {
  // do some stuff
};

如果您想要一个函数,它接受任意数量的参数并返回任何值(包括void):

type CallbackFunctionVariadicAnyReturn = (...args: any[]) => any;

您可以指定一些强制性参数,然后指定一组其他参数(例如,字符串,数字,然后是一组额外的args),从而:

type CallbackFunctionSomeVariadic =
  (arg1: string, arg2: number, ...args: any[]) => void;

这对于诸如EventEmitter处理程序之类的东西可能很有用。

可以按这种方式随意键入函数,尽管如果尝试使用类型别名将所有内容都弄清楚,则可能会被带走并遇到组合问题。


1
之间Function(...args: any[]) => any什么是首选?
阿洪

@ahong:就个人而言,我更喜欢后者,因为它通常提供签名。...args: any[]不是很有用
Ed S.

type CallbackFunctionSomeVariadic = (arg1: string, arg2: number, ...args: any[]) => void;我在找什么,ty。
阿克特伊凡

61

根据Ryan的回答,我认为您正在寻找的接口定义如下:

interface Param {
    title: string;
    callback: () => void;
}

34

这是一个接受回调的函数的示例

const sqk = (x: number, callback: ((_: number) => number)): number => {
  // callback will receive a number and expected to return a number
  return callback (x * x);
}

// here our callback will receive a number
sqk(5, function(x) {
  console.log(x); // 25
  return x;       // we must return a number here
});

如果您不关心回调的返回值(大多数人不知道如何以任何有效方式使用它们),则可以使用 void

const sqk = (x: number, callback: ((_: number) => void)): void => {
  // callback will receive a number, we don't care what it returns
  callback (x * x);
}

// here our callback will receive a number
sqk(5, function(x) {
  console.log(x); // 25
  // void
});

注意,我用于callback参数的签名...

const sqk = (x: number, callback: ((_: number) => number)): number

我会说这是TypeScript的缺陷,因为我们希望为回调参数提供一个名称。在这种情况下,我使用了_它,因为它在sqk函数内部不可用。

但是,如果您这样做

// danger!! don't do this
const sqk = (x: number, callback: ((number) => number)): number

它是有效的 TypeScript,但将被解释为...

// watch out! typescript will think it means ...
const sqk = (x: number, callback: ((number: any) => number)): number

即,TypeScript会认为参数名称number,而隐含类型为any。这显然不是我们想要的,但是,a,TypeScript是这样工作的。

因此,在键入函数参数时,请不要忘记提供参数名称……看起来很愚蠢。


32

您可以通过多种方式在接口中定义函数类型,

  1. 一般方式:
export interface IParam {
  title: string;
  callback(arg1: number, arg2: number): number;
}
  1. 如果您想使用属性语法,
export interface IParam {
  title: string;
  callback: (arg1: number, arg2: number) => number;
}
  1. 如果您先声明函数类型,
type MyFnType = (arg1: number, arg2: number) => number;

export interface IParam {
  title: string;
  callback: MyFnType;
}

使用非常简单

function callingFn(paramInfo: IParam):number {
    let needToCall = true;
    let result = 0;
   if(needToCall){
     result = paramInfo.callback(1,2);
    }

    return result;
}
  1. 您还可以声明一个函数类型文字,这意味着一个函数可以接受另一个函数作为其参数。参数化函数也可以称为回调。
export interface IParam{
  title: string;
  callback(lateCallFn?:
             (arg1:number,arg2:number)=>number):number;

}

10

共有四种抽象函数类型,当您知道函数将使用或不使用参数,是否将返回数据时,可以分别使用它们。

export declare type fEmptyVoid = () => void;
export declare type fEmptyReturn = () => any;
export declare type fArgVoid = (...args: any[]) => void;
export declare type fArgReturn = (...args: any[]) => any;

像这样:

public isValid: fEmptyReturn = (): boolean => true;
public setStatus: fArgVoid = (status: boolean): void => this.status = status;

对于仅将一种类型用作任何函数类型,我们可以将所有抽象类型组合在一起,如下所示:

export declare type fFunction = fEmptyVoid | fEmptyReturn | fArgVoid | fArgReturn;

然后像这样使用它:

public isValid: fFunction = (): boolean => true;
public setStatus: fFunction = (status: boolean): void => this.status = status;

在上面的示例中,一切都是正确的。但是从大多数代码编辑器的角度来看,下面的用法示例是不正确的。

// you can call this function with any type of function as argument
public callArgument(callback: fFunction) {

    // but you will get editor error if call callback argument like this
    callback();
}

正确要求编辑者是这样的:

public callArgument(callback: fFunction) {

    // pay attention in this part, for fix editor(s) error
    (callback as fFunction)();
}

2

Typescript:如何为方法参数中使用的函数回调定义类型?

您可以将回调声明为1)函数属性或2)方法

interface ParamFnProp {
    callback: (a: Animal) => void; // function property
}

interface ParamMethod {
    callback(a: Animal): void; // method
}

TS 2.6起存在重要的输入区别:

声明函数属性后,您将在--strict--strictFunctionTypes模式下获得更强的(“声音”)类型。让我们举个例子:

const animalCallback = (a: Animal): void => { } // Animal is the base type for Dog
const dogCallback = (d: Dog): void => { } 
// function property variant
const param11: ParamFnProp = { callback: dogCallback } // error: not assignable
const param12: ParamFnProp = { callback: animalCallback } // works

// method variant
const param2: ParamMethod = { callback: dogCallback } // now it works again ...

从技术上讲,方法是双变量和函数属性逆变下他们的观点strictFunctionTypes。与内置类型结合使用时,仍会方法进行更宽松的检查(即使没有声音),以使其更加实用。Array

摘要

  • 函数属性和方法声明之间存在类型差异
  • 如果可能的话,为更强的类型选择一个函数属性

游乐场示例代码

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.