如何为打字稿中的变量分配方法?

时间:2018-07-24 22:22:41

标签: typescript

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.mbcs.MainActivity">

<android.support.design.widget.AppBarLayout
    android:id="@+id/appbarId"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/AppTheme.AppBarOverlay">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:popupTheme="@style/AppTheme.PopupOverlay" />
  </android.support.design.widget.AppBarLayout>

<FrameLayout
    android:id="@+id/fragment_container"
    android:layout_below="appbarId"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
</FrameLayout>

</RelativeLayout>

我想将一个类方法存储在一个变量中,然后调用它。如何使该示例工作?如果我仅将“ greeter”存储在“ a”中,然后调用greet,则它起作用,但是我不想那样做。我正在typescript playground

上尝试

1 个答案:

答案 0 :(得分:1)

TL; DR

let a  = greeter.greet.bind(greeter);

实际说明

实际上与TypeScript 没有任何关系,但与JavaScript以及this的工作方式无关。

greeter.greet()分配给a时,实际上所做的是将Greeter的类方法greet()分配给a,而不是{{您命名为greet()的{​​{1}}类实例的1}}方法。因此,通过将Greeter赋予greeter函数,您可以将bind()的{​​{1}}方法分配给greeter

进一步阅读:

  1. MDN article which explains this in JavaScript,特别是“ Greeter#greet()方法”部分

  2. TypeScript Wiki article about this in TypeScript