Skip to content
Advertisement

How do I send a YAML file as a base64 encoded string?

I am trying to send a yaml file as a base64 string so that this code works:

JavaScript

In the above code response.data.content should have the data.

I have this route:

JavaScript

The code is working fine except that the client code expects the base64 string in a property called content in the following code:

JavaScript

But the string is in response.data. How can I set the content property instead?

Advertisement

Answer

How about sending a json response containing an object with a content property from your server side instead of the encoded string directly?

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement