0
林試着的參數的參數「這個」這種方式傳遞給一個函數:參數類型「無效」的是不能分配給類型「功能」
modalshow = new Confirmation(false, this.changea(this), this.changer);
和確認類是這樣的:
constructor(
public show: boolean,
public actionAccept: Function,
public actionReject: Function
) {}
,但我不斷收到錯誤:
Argument of type 'void' is not assignable to parameter of type 'Function'
所以,我不知道是什麼問題,我應該做。
您正通過調用'this.changea(this)'返回的**值**和'this.changer'的**值**。他們是什麼?順便說一句,「void」不是[ECMAScript * Type *](http://ecma-international.org/ecma-262/8.0/#sec-ecmascript-language-types)。 – RobG