JavaScriptの.pathname
メソッドは、なぜ最初のスラッシュまで持ってくるのでしょうか?
.pathname
は実用的には次の書き方になると思うのですが、最初のスラッシュまで持ってくるせいで、空の配列が取得されてしまいますよね。
邪魔になるばかりではないか…と突っ込みたくなるのですが、どんなときに役に立つのでしょうか?
js
1const url = "http://example.com/smith/profile"; 2const obj = new URL( url ); 3const path = obj.pathname.split( '/' ); 4console.log( path ); // ['', 'smith', 'profile'] のように、空の配列が取得されてしまう
そしてもし「パスの取得関数」を作るなら、この邪魔な部分を残しておくべき(getPath1
)でしょうか?それとも削除しておくべき(getPath2
)でしょうか?
function getPath1( url ){ const obj = new URL( url ); const path = obj.pathname.split( '/' ); return path; } function getPath2( url ){ const obj = new URL( url ); const path = obj.pathname.slice( 1 ).split( '/' ); return path; } const url = "http://example.com/smith/profile"; console.log( getPath1( url ) ); // 遺しておく → ['', 'smith', 'profile'] console.log( getPath2( url ) ); // 削除しておく → ['smith', 'profile']
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/09 10:34