return match ? { tx: +match[1],//为什么需要 + 号呢? ty: +match[2], rotate: +match[3], scale: +match[4]} : null;
这里为什么需要写 + 号呢?
OK 明白了 是吧字符串强制转换成 数字了