我正在将POST
chrome 扩展内容脚本发送到我控制的服务器。我在清单中设置了权限。这是我的 XHR 代码。(我想为此避免使用 jQuery)。它发送一个空的responseText
var xhr = new XMLHttpRequest();
xhr.open("POST",'http://mysite.com/make',true);
xhr.onreadystatechange=function() {
if (xhr.readyState == 4) {
var res = JSON.parse(xhr.responseText);
console.log(res);
}
}
xhr.send({'textbox':data[0].user,'from':'extension'});
data[0].user
是我直接从 Twitter API 获得的对象
在我的 CI 控制器中,我有
$user = $this->input->get_post('textbox', TRUE);
$from = $this->input->get_post('from', TRUE);
$fullURL = 'http://www.google.com'; //example of a URL from code.
$json = $this->output->set_content_type('application/json');
$json->set_output(json_encode(array('URL' => $fullURL)));
响应文本为空
另一方面,jquery 调用工作正常
$.post("http://mysite.com/make", { 'textbox': data[0].user, 'from':'jquery' },
function(data) {
console.log(data);
});