Jul
17
comment Why is fetch giving me 400 bad request error
I hope that's not your genuine API key
Jul
17
comment I am making a discord bot but it won't start up when I run the 'startup.js' file
are you following the instructions at discordjs.guide by any chance?
Jul
17
comment "The buffer passed to decodeAudioData contains an unknown content type." Error React
what is the content of the text/html - perhaps it's a clue
Jul
16
comment Problem when trying to fetch data from the Fetch API. Empty parentheses arrive before clicking in the console
read this and this
Jul
16
comment Problem when trying to fetch data from the Fetch API. Empty parentheses arrive before clicking in the console
TL;DR - you're using asynchrony wrong. The data is retrieved asynchronously - so the console.log occurs before the object is later populated, however the console evaluates the content of that object when you click on it - therefore it looks like it has data, yet it doesn't at the time you console.log it ... to verify console.log(structuredClone(this._data)) and note how it DOESN'T get populated later
Jul
16
reviewed Approve suggested edit on github issue, im having issue in updating my git files
Jul
16
comment github issue, im having issue in updating my git files
javascript and python tags are completely irrelevant to this question.
Jul
16
comment Dynamically call the import sentence
use this instead
Jul
16
comment How to retrieve the Pinia Store State variable globally in Vue3?
but const response = webSocketStore.findChatroomBool; retrieves state.findChatroomBool from the pinia store ... and this.socket.findChatroomBool = msg; has nothing to do with that. In fact, the code you posted only ever sets this.socket.findChatroomBool and only ever gets findChatroomBool from pinia state ... the two properties are in no way linked. What happens if you, for example, replace this.socket.findChatroomBool = msg; with this.findChatroomBool = msg;
Jul
16
comment Chrome extension does not play certain video files
this?
Jul
16
comment How to retrieve the Pinia Store State variable globally in Vue3?
so, what is the purpose of findChatroomBool in state - since you never use it?
Jul
16
comment How to retrieve the Pinia Store State variable globally in Vue3?
but why are you this.socket.findChatroomBool = msg; ... when findChatroomBool is NOT a property of your state
Jul
16
comment "The buffer passed to decodeAudioData contains an unknown content type." Error React
so, what changed on the server?
Jul
16
comment The Enter key works every time I call addEventListener ("click")
i didnt put it in my css - what does your CSS have to do with keyboard events?
Jul
16
comment "The buffer passed to decodeAudioData contains an unknown content type." Error React
does the data retrieved by the fetch look correct? Perhaps your server is sending something other than audio data
Jul
16
comment WSL container terminates immediately once the last console is closed
whenever the last console session ... is closed, the entire container is stopped after a short grace period. - WSL has always behaved this way for me. Maybe something in here will help
Jul
16
comment How to retrieve the Pinia Store State variable globally in Vue3?
this.socket.findChatroomBool = msg; looks wrong - why are you adding findChatroomBool property to this.socket?
Jul
15
comment CORS preflight check Error with iframe in react and ASP.Net iframe Service
i dont know why it is doing this - something in your code perhaps?
Jul
15
comment CORS preflight check Error with iframe in react and ASP.Net iframe Service
what is it and why does it do that?
Jul
15
comment JavaScript Set not working correctly locally?
For future reference, MDN has documentaion which includes compatibility tables including for Node where appropriate
1 2 3 4 5