Denoを試してみていて、Reactのレンダリングまではうまくいったのですが、onClickが全く機能しません。
検証機能で確認したのですが、そもそもイベントそのものが認識されていないように感じます
DenoではまだonClickは使えないのでしょうか?それとも呼び方の問題なのでしょうか?
解決のためのとっかかりだけでもよいので教えていただけると助かります。
よろしくお願いいたします
以下使用しているコードを貼ります
※ちなみにですがheaderも機能していません
typescript
1import { serve } from 'https://deno.land/std/http/server.ts'; 2import React from 'https://jspm.dev/react'; 3import ReactDOMServer from 'https://jspm.dev/react-dom/server'; 4import App from './App.tsx'; 5 6const s = serve({ port: 8888 }); 7console.log("http://localhost:8888/"); 8for await (const req of s) { 9 req.respond({ 10 status: 200, 11 headers: new Headers({ 12 "content-type": "text/html", 13 }), 14 body: ReactDOMServer.renderToString( 15 <html lang="en"> 16 <head> 17 <meta charSet="utf-8" /> 18 <link rel="icon" href="public/favicon.ico" /> 19 <meta name="viewport" content="width=device-width, initial-scale=1" /> 20 <meta name="theme-color" content="#000000" /> 21 <link rel="apple-touch-icon" href="public/logo192.png" /> 22 <link rel="manifest" href="public/manifest.json" /> 23 <title>React App</title> 24 </head> 25 <body> 26 <noscript>You need to enable JavaScript to run this app.</noscript> 27 <React.StrictMode> 28 <App /> 29 </React.StrictMode> 30 </body> 31 </html> 32 ) 33 }); 34}
typescript
1import React, { useState } from 'https://jspm.dev/react'; 2import { createStore, combineReducers } from 'https://jspm.dev/redux'; 3import { reducer as formReducer } from 'https://jspm.dev/redux-form'; 4import { Provider } from 'https://jspm.dev/react-redux'; 5 6const rootReducer = combineReducers({ form: formReducer }); 7const store = createStore(rootReducer); 8 9function App() { 10 const [sleeping, setSleeping] = useState(false); 11 function sleep(time: number) { 12 return new Promise(resolve => setTimeout(resolve, time)); 13 } 14 async function clickButton() { 15 setSleeping(true); 16 await sleep(3000); 17 console.log('clicked!'); 18 setSleeping(false); 19 } 20 return ( 21 <Provider store={store}> 22 <div className="App"> 23 <button 24 type='button' 25 onClick={() => clickButton()} 26 disabled={sleeping} 27 > 28 click 29 </button> 30 </div> 31 <div>{sleeping ? 'sleeping' : 'finished!'}</div> 32 </Provider> 33 ); 34} 35 36export default App;
あなたの回答
tips
プレビュー