kai(row){ this.show = this.form = (this.c = row) || {};
时间: 2024-05-18 10:16:20 浏览: 109
kai17kai.github.io
这是一段 JavaScript 代码,其中定义了一个函数 kai,它接受一个参数 row。函数体里面有三个语句,分别是:
1. this.show = this.form = (this.c = row) || {};
这一行代码将 this.c 的值设为 row,如果 row 是 falsy 值,则将 this.c 设为一个空对象。然后将 this.c 赋值给 this.show 和 this.form。
2. this.form
这一行代码读取 this.form 的值,并将其作为函数的返回值。
因为函数体中没有其他的语句,所以这个函数的作用主要是将参数 row 赋值给 this.c,然后将 this.c 赋值给 this.show 和 this.form,并返回 this.form。
阅读全文