Comments (6)
I'm not sure I understand. In what cases would a
script
tag be necessary? Can you provide an example?
I came across this issue as I was developing a JS library intended to be included through a script tag. For non-React projects, a simple <script async src="..." onload="// configure library"></script>
works fine. However, when testing compatibility with React I noticed that the script & event handlers never run. This can obviously be solved by running a block in useEffect
to run document.createElement('script')
and add the source and onload there, but I feel that this should be supported by React out of the box.
from react.
I'm not sure I understand. In what cases would a script
tag be necessary? Can you provide an example?
from react.
We have support for this in the canary channel, can you try it in the canary to confirm it does what you want?
Here are some in-progress docs we're working on for the feature: https://react-mpvnsvyqg-fbopensource.vercel.app/reference/react-dom/components/script
from react.
We have support for this in the canary channel, can you try it in the canary to confirm it does what you want?
Here are some in-progress docs we're working on for the feature: https://react-mpvnsvyqg-fbopensource.vercel.app/reference/react-dom/components/script
That's cool that this feature is being worked on. I tried out the latest canary 18.3.0-canary-b2d637128-20240123
, and I observed the special rendering where scripts are moved to the head
and the script did get loaded. However, I'm still unable to get the onLoad
handler to fire. Perhaps I'm not implementing it correctly and need some additional code to get it working.
For example:
<MyApp>
<script src="https://cdn.tailwindcss.com" onLoad={() => { console.log("Loaded!"); }}></script>
</MyApp>
In this case neither the tailwindcss
library nor the onLoad
handler get executed.
from react.
This issue has been automatically marked as stale. If this issue is still affecting you, please leave any comment (for example, "bump"), and we'll keep it open. We are sorry that we haven't been able to prioritize it yet. If you have any new additional information, please include it with your comment!
from react.
Closing this issue after a prolonged period of inactivity. If this issue is still present in the latest release, please create a new issue with up-to-date information. Thank you!
from react.
Related Issues (20)
- [Compiler Bug]: healthcheck do not check next.js StrictMode HOT 5
- [React 19] Different behaviors with `preload` method HOT 2
- Bug: React 18 SSR Sometimes fallback to CSR without throw any errors on Prod Mode, The fiber node which tag is "HostRoot"(3)has flags "Snapshot"(1024),it works fine when flags is Update(4) HOT 1
- Bug: ForwardRef components cant have display names or types HOT 2
- Consider changing the next property type of the update object of the dispatchSetState function from any to null
- [React 19]
- ..
- [DevTools Bug]: 5.2.0 is not available for Firefox HOT 4
- [DevTools Bug] getCommitTree(): Invalid commit "1" for root "445". There are only "1" commits.
- [eslint-plugin-react-hooks] Missing type declarations HOT 2
- [React 19]
- Bug: useEffect is triggered even if the array as dependency variable wasn't changed. HOT 4
- [DevTools Bug]: React Devtools not working neither on vite or cra project HOT 5
- ..
- Bug: Error Recovery Mechanism Overwriting Initial Rendering Errors in Concurrent Mode HOT 1
- Bug: Empty `style={}` object values cause hydration warnings in React 18.3.1 - Includes solution HOT 1
- [React 19] Cannot assign to readonly property HOT 8
- Unexpected Initial State Jump in 'useEffect" with 'setTimeout' and State Dependencies HOT 3
- React[19] Module '"react"' has no exported member 'useActionState'. HOT 2
- Bug: effect runs with stale state values outside of Concurrent React HOT 1
Recommend Projects
-
React
A declarative, efficient, and flexible JavaScript library for building user interfaces.
-
Vue.js
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
-
Typescript
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
-
TensorFlow
An Open Source Machine Learning Framework for Everyone
-
Django
The Web framework for perfectionists with deadlines.
-
Laravel
A PHP framework for web artisans
-
D3
Bring data to life with SVG, Canvas and HTML. 📊📈🎉
-
Recommend Topics
-
javascript
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
-
web
Some thing interesting about web. New door for the world.
-
server
A server is a program made to process requests and deliver data to clients.
-
Machine learning
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
-
Visualization
Some thing interesting about visualization, use data art
-
Game
Some thing interesting about game, make everyone happy.
Recommend Org
-
Facebook
We are working to build community through open source technology. NB: members must have two-factor auth.
-
Microsoft
Open source projects and samples from Microsoft.
-
Google
Google ❤️ Open Source for everyone.
-
Alibaba
Alibaba Open Source for everyone
-
D3
Data-Driven Documents codes.
-
Tencent
China tencent open source team.
from react.