Look up Javascript in JSON file?
I would like to program a JavaScript function that reads a text from an input field (HTML), then looks up each letter individually in a JSON file and finally outputs the hexadecimal code corresponding to the letters, which is assigned to the letters in the JSON file, into another text field (HTML).
Reading and outputting is not a problem either, but I don't know how to make the JavaScript code work with the JSON file because I've never done it before and don't fully understand it.
Does anyone know what the code for this is and can explain it in a way that is understandable?
If you need the character in the Hex code assigned to ASCII, you do not need to use an extra JSON. There you can easily .ToString(16) retrieve this character into its Hex code.
If this is ‘custom’ hex codes, you can create a JSON in the following format:
You can always use the text content of JSON files JSON.parse() to convert an object.
In the example, I assume that it is a file that you run the JS in the browser:
lg Suiram1
You can remove the JSON object by using the Fetch API. It can only request the file content via HTTP request and then map it directly onto a JavaScript object.
Example:
The data-Variable shows the object mentioned. Within the callback you can now iterate via the text input and drag the corresponding values from the object. So about that.