From b2b5b057bdfd36af64a23079d280990761a9bb59 Mon Sep 17 00:00:00 2001 From: YuJian Date: Mon, 27 Jun 2022 11:20:51 +0800 Subject: [PATCH] vault backup: 2022-06-27 11:20:51 --- Antd 的深入尝试/Button.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Antd 的深入尝试/Button.md b/Antd 的深入尝试/Button.md index 783cc97..45a00d5 100644 --- a/Antd 的深入尝试/Button.md +++ b/Antd 的深入尝试/Button.md @@ -4,4 +4,6 @@ const rxTwoCNChar = /^[\u4e00-\u9fa5]{2}$/; const isTwoCNChar = rxTwoCNChar.test.bind(rxTwoCNChar); isTwoCNChar("提交") -``` \ No newline at end of file +``` + +在这里 isTwoCNChar 是使用 bind 改变作用域后生成的新函数赋值的,它的作用域为 rxTwoCNChar,在这里 rxTwoCNChar.test.bind 实际上相当于 RegExp.prototype.test.bind,它们的效果实际上是一致的 \ No newline at end of file