Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
223 views
in Technique[技术] by (71.8m points)

javascript - Consuming a Hapi JS API from a separate Vue JS Frontend. request.payload is undefined

I'm having my first steps on Hapi JS. My app connects with a SQL Server DB.

However, I'm tryng to send login data from Vue CLI JS frontend to Hapi JS Api, I'm using axios for this. A Login is a "SELECT * FROM" query, so I put "get" in the axios function code.

enter image description here

This is the function that works but i can't send password by URL, it's not safe, with F12 you'll can see the user credentials for free encrypted or not.

enter image description here

And this is the Hapi JS route that receives the data. It works like this, but it's not worth for me doing this. I want my code work like this:

enter image description here

Axios function

enter image description here

Hapi JS route with "request.payload" instead "request.query"

But when I try this, there is an error in console that says: "Cannot destructure username from request.payload of undefined" and in fact a console.log of request.payload is undefined :C I really need help.

question from:https://stackoverflow.com/questions/65923289/consuming-a-hapi-js-api-from-a-separate-vue-js-frontend-request-payload-is-unde

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Your problem stems from your endpoint HTTP method. An HTTP GET request cannot have a payload. You should send it as a POST request instead.

On axios:


axios.post(config.url, { username: parametros.username, password: parametros.password }).then(...)

On the hapi side you should set method: 'POST' in your route definition. That way you should now have access to the request.payload property. You should also validate the payload that you receive from your client. Here is some documentation on it: https://hapi.dev/tutorials/validation/?lang=en_US.

Also on a side note, if you want to add a cookie to the response of the server you should set it using the Response Toolkit (the second parameter h in your handler):


return h.response(someValue).state('auth-cookie', { NOM_USUARIO: account.NOM_USUARIO })

Here is some documentation to help you out: https://hapi.dev/api/?v=20.1.0#-hstatename-value-options

Good luck and hapi coding. ??


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...