プロジェクタ1回目:2日目
1067 ワード
1)fetch関数のタイトルを書いたのはいつですか?
3)会員収入検証項目 必須入力:ID/パスワード/名前/Eメール/番号
パスワードの入力:文字、数字、特殊記号の組み合わせ
パスワードの照合
電話番号入力時は数字 のみ入力.
すべてのアルファベット/数字/特殊文字を含める必要があります. パスワードは少なくとも8ビット以上あります. 追加:アイデンティティー重複チェック、ポップアップウィンドウのオープン、Eメールオプションチェック後のアドレス自動入力
アドレス検索時の郵便番号検索ポップアップ 正規表現:リファレンス
const idPattern =/^[A-Za-z]{1}[A-Za-z0-9]{3,19}/; const pwPattern =/^(?=.*[a-zA-Z])(?=.*[!@#%^+=-])(?=.[0-9]).{8,16}/;constemailPattern=/[0−9a−zA−Z]([−.]?[0−9a−zA−Z])∗@[0−9a−zA−Z]([−.]?[0−9a−zA−Z])∗.[a−zA−Z]2,3/; const emailPattern =/^[0-9a-zA-Z]([-_.]?[0-9a-zA-Z])*@[0-9a-zA-Z]([-_.]?[0-9a-zA-Z])*.[a-zA-Z]{2,3}/;constemailPattern=/[0−9a−zA−Z]([−.]?[0−9a−zA−Z])∗@[0−9a−zA−Z]([−.]?[0−9a−zA−Z])∗.[a−zA−Z]2,3/i;
const phonePattern =/(^02.{0}|^01.{1}|[0-9]{3})([0-9]+)([0-9]{4})/g; -リアルタイム:フォーカス出力
headers: {
'Content-Type': 'application/json',
},
2)アドレスAPIの使用3)会員収入
パスワードの入力:文字、数字、特殊記号の組み合わせ
パスワードの照合
電話番号入力時は数字
すべてのアルファベット/数字/特殊文字
アドレス検索時の郵便番号検索ポップアップ
const idPattern =/^[A-Za-z]{1}[A-Za-z0-9]{3,19}/; const pwPattern =/^(?=.*[a-zA-Z])(?=.*[!@#%^+=-])(?=.[0-9]).{8,16}/;constemailPattern=/[0−9a−zA−Z]([−.]?[0−9a−zA−Z])∗@[0−9a−zA−Z]([−.]?[0−9a−zA−Z])∗.[a−zA−Z]2,3/; const emailPattern =/^[0-9a-zA-Z]([-_.]?[0-9a-zA-Z])*@[0-9a-zA-Z]([-_.]?[0-9a-zA-Z])*.[a-zA-Z]{2,3}/;constemailPattern=/[0−9a−zA−Z]([−.]?[0−9a−zA−Z])∗@[0−9a−zA−Z]([−.]?[0−9a−zA−Z])∗.[a−zA−Z]2,3/i;
const phonePattern =/(^02.{0}|^01.{1}|[0-9]{3})([0-9]+)([0-9]{4})/g;
Reference
この問題について(プロジェクタ1回目:2日目), 我々は、より多くの情報をここで見つけました https://velog.io/@hook/플젝-1차-2일째テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol