This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 342
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes issue #419: Improved by adding working params and fixed when th…
…e filter when switch to github or eddie
- Loading branch information
Showing
3 changed files
with
40 additions
and
3 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// getparam.ts | ||
export function para(): string[] { | ||
if (typeof window !== 'undefined') { | ||
// Extract query parameters from the URL | ||
const urlParams = new URLSearchParams(window.location.search); | ||
const filter = urlParams.get('filter'); | ||
|
||
if (filter) { | ||
// Decode URL-encoded string | ||
const decodedFilter = decodeURIComponent(filter); | ||
const arr = decodedFilter.split(','); | ||
console.log(arr); | ||
return arr; | ||
} | ||
} | ||
|
||
// Return an empty array if no valid parameters are found | ||
return []; | ||
} |