tags:

views:

27

answers:

3
var x = 20;
xhr.open('GET','http://127.0.0.1:8000/insert/x);

How can i pass the value of x in the http string , so as to get

xhr.open('GET','http://127.0.0.1:8000/insert/20); as request? 
A: 

Like this:

xhr.open('GET','http://127.0.0.1:8000/insert/' + x);

You need to concatenate the value of x to the URL string.

Oded
A: 
xhr.open('GET','http://127.0.0.1:8000/insert/' + x);

You should use JavaScript's + operator to concatenate the Strings.

Adam
+1  A: 

xhr.open('GET','http://127.0.0.1:8000/insert/' + x);

Brabster