我使用此代码将信息发送到NODEjs服务器:
// Main thread (before creating any other threads)
shared_ptr<A> a(new A(1));
// Thread 1
shared_ptr<A> a_copy = atomic_load(&a);
// Thread 2
atomic_store(&a, make_shared<A>(2) );
但是现在我想发送一个HTML代码。示例:
var obj=new XMLHttpRequest();
vat txt2send = "test";
obj.open("GET","http://localhost:1234" + "?variable=" + txt2send, true);
obj.send(null);
我怎样才能实现这一目标?当然,我的网址格式错误。
答案 0 :(得分:2)
我建议你使用post not get for this case。
data = {
variable1 : ...,
variable2 : ...
}
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("POST", "/yoururl");
xmlhttp.setRequestHeader("Content-Type", "application/json");
xmlhttp.send(JSON.stringify(data));