-
-
Notifications
You must be signed in to change notification settings - Fork 382
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add query parameter support #998
Comments
Your solution for server-side definitely works, but I am not sure if it can be adapted for client side. The problem is - loadable is not importing scripts by itself, it's just asking webpack to do so with all script names being hardcoded in the webpack manifest. So you have the following options:
|
Solution I currently use is adding a routing method, which is by cookie, in nginx proxy server. Then add (⬆️ The hard way) The easy way, is not that easy actually, because sometimes there may be dynamic language support demand, this is why I said:
As there is dynamic demands, Maybe loadable's webpack plugin can add some hooks to solve this ? I'm not familiar with webpack development (actually I'm not a frontend engineer...). |
That actually should work out of the box. Just use cookies not extra query parameters
It is, because it can be configured in runtime. And that would be same script, just prefixed with language - something nginx can use instead of query attribute.
It cannot because it's not only about loadable-stats (server side), but client-side as well, fully managed by webpack |
🚀 Feature Proposal
When accessing some scripts, sometimes we need append a query/search parameter (a.com/
?x=1&y=2
), butChunkExtractor
do not support this.Motivation
Think this scenario:
Suppose we have a website which support 2 languages: A and B, there is an nginx reverse proxy which routing accesses by query parameter
?lang=A|B
.In this scenario, we need
ChunkExtractor.getScript*
generate<script src='xxxxx?lang=A'></scrpt>
or<script src='xxxxx?lang=B'></scrpt>
DOM elements staticly or dynamicly.But
ChunkExtractor
has no such ability for now :(Example
Suppose
props.lang = en-US
,clientExtractor.getScriptTags()
will generate DOM like this:NOTE: dynamic loaded component should stick to this rule as well.
Pitch
Now I'm modifing query parameters like this:
But currently I have no idea how to modify dynamicly loaded component. And there is nothing to help by reading the API document.
The text was updated successfully, but these errors were encountered: