createCommand(func, canExecute)
根据给定函数创建命令,与 ViewModels 一起使用。
命令是一个函数,带有一个额外的 canExecute
可观察属性,用于确定是否可以执行命令。
执行时,Command 函数将检查 canExecute 的值,如果为false,则抛出。
当命令已执行或即将执行时,它还会提供事件。
Name |
Type |
Default |
Description |
func |
function
|
|
要执行的函数。 |
canExecute |
Boolean
|
true
|
optional
布尔值,表示函数当前是否可以执行。 |