1

For example the user can enter: +444123454656656 OR 123454656656 - only numbers or a + in front of the number.

<TextFieldFormsy
    className="myclasse"
    variant="outlined"
    label={t("phone_number")}
    id="phone_number"
    name="phone_number"
    value={phone_number}
    onChange={handleChange}
/>
4

1 回答 1

0

您可以简单地过滤 onChange 中的输入以删除您不想要的所有内容:

const isValidChar = (char, index) => {
    if(index === 0 && char === "+") {
        return true;
    } 
    return !isNaN(char);
}

const filteredInput = input.split("").filter((char, index) => isValidChar(char, index)).join("")

这是过滤器的小提琴

于 2021-02-04T17:12:15.527 回答