user11910832
user11910832

Reputation:

JSON user search

I have the following gist with a JSON database and an XHR object.

The user parameter from getUsers(user) method is an input value. I want select an user from the db via input search value. But i don't know how to set the http url or the searching algorithm.

I can select an user via: user.Name1 but how can i modify the entries after the dot .Name1 so it can be selected with the input value.

E.g: user. + "input value". I can't figured out.

Upvotes: 0

Views: 47

Answers (2)

Vince
Vince

Reputation: 979

You can access on object like this user["Name1"] and as such can do this : user[input_value_variable]

Upvotes: 1

Maksym Rudenko
Maksym Rudenko

Reputation: 746

I hope I inderstood you right, you want to access it via square brackets: user[userValue] where userValue is your input variable

Upvotes: 1

Related Questions