这是我当前每 5 分钟发送一次请求的 Javascript 代码。
function sendRequest() {
$(document).ready(function() {
console.log($.post('../notify/notify.php', { notify: 1 }).done());
});
}
setInterval(function() {
console.log(sendRequest());
}, 5000);
然后,当我在开发者工具中检查网络时,正在发送请求并按预期返回响应。这是我的 PHP 代码:
header('Content-Type: application/javascript');
if(isset($_POST['notify']) && $_POST['notfiy'] == "1") {
echo json_encode(array(
'Title' => 'Welcome to our Site',
'Message' => 'You are current recieving notifications.',
'Location' => 'http://example.com/',
'State' => true
),true);
} else {
echo json_encode(array(
'State' => false
), true);
}
但是,当我检查控制台时,我发现它是一个 Object {readyState: "1"} 类型,然后当我展开它时,预期的响应包含在 responseText 中 字段。但是,当我将 .responseText 附加到 $.post().done 的末尾时,。console.log() 返回 undefined ()
我做错了什么?如何从我的 PHP 文件中获取响应?
更新:
在回顾问题后,我了解到我声明了错误的header()。类型应该是 /json 而不是 /javascript。此外,响应不可读,因为如前所述,我只是记录了请求的 promise 。我需要在我的 done() 函数中添加一个 function(param),然后使用其中的响应。
最佳答案
What am I doing wrong?
您正在 console.log() 中包装异步调用,期望 .responseText 或 .responseJSON 为 $.post() ,或 $.post() 异步调用的回调函数的参数将记录在 console 中。
console.log() 不会等待异步调用的进行或完成。 console.log() 将记录返回的 jQuery promise 对象
$.post()
However, when I check the console I see that it is a type
Object {readyState: "1"}
不是 jxXHR 对象的 .responseText 或 .responseJSON 属性
Returns: jqXHR
.done()接受单个函数或函数数组,您可以在函数体内包含 console.log() 以记录异步操作 $.post() 的结果在函数回调中设置为第一个参数。 .responseText 或 .responseJSON 可作为 .done() 中第三个参数的属性进行访问。
.done(function(data, textStatus, jqxhr) {
console.log(data, jqxhr.responseJSON)
})
您还在 php 处将 Content-Type headers 设置为 "application/javascript",尽管您 echo 来自 php 的 array。 headers 应设置为 "application/json"。 $.post() 接受第三个参数,它是响应的预期 Content-Type 或 dataType;在这里,“json”。
// declare variable `interval` for ability to call `clearInterval(interval)`
var interval;
function sendRequest() {
return $.post('../notify/notify.php', { notify: 1 }, "json")
.done(function(data) {
console.log(data)
})
// handle error
.fail(function(jqxhr, textStatus, errorThrown) {
console.log(errorThrown)
});
}
$().ready(function() {
sendRequest().then(function() {
interval = setInterval(sendRequest, 5000);
})
})
关于javascript - 无法获得发布请求的响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40452625/
我在从html页面生成PDF时遇到问题。我正在使用PDFkit。在安装它的过程中,我注意到我需要wkhtmltopdf。所以我也安装了它。我做了PDFkit的文档所说的一切......现在我在尝试加载PDF时遇到了这个错误。这里是错误:commandfailed:"/usr/local/bin/wkhtmltopdf""--margin-right""0.75in""--page-size""Letter""--margin-top""0.75in""--margin-bottom""0.75in""--encoding""UTF-8""--margin-left""0.75in""-
我对最新版本的Rails有疑问。我创建了一个新应用程序(railsnewMyProject),但我没有脚本/生成,只有脚本/rails,当我输入ruby./script/railsgeneratepluginmy_plugin"Couldnotfindgeneratorplugin.".你知道如何生成插件模板吗?没有这个命令可以创建插件吗?PS:我正在使用Rails3.2.1和ruby1.8.7[universal-darwin11.0] 最佳答案 随着Rails3.2.0的发布,插件生成器已经被移除。查看变更日志here.现在
我尝试运行2.x应用程序。我使用rvm并为此应用程序设置其他版本的ruby:$rvmuseree-1.8.7-head我尝试运行服务器,然后出现很多错误:$script/serverNOTE:Gem.source_indexisdeprecated,useSpecification.Itwillberemovedonorafter2011-11-01.Gem.source_indexcalledfrom/Users/serg/rails_projects_terminal/work_proj/spohelp/config/../vendor/rails/railties/lib/r
我正在尝试在我的centos服务器上安装therubyracer,但遇到了麻烦。$geminstalltherubyracerBuildingnativeextensions.Thiscouldtakeawhile...ERROR:Errorinstallingtherubyracer:ERROR:Failedtobuildgemnativeextension./usr/local/rvm/rubies/ruby-1.9.3-p125/bin/rubyextconf.rbcheckingformain()in-lpthread...yescheckingforv8.h...no***e
我花了三天的时间用头撞墙,试图弄清楚为什么简单的“rake”不能通过我的规范文件。如果您遇到这种情况:任何文件夹路径中都不要有空格!。严重地。事实上,从现在开始,您命名的任何内容都没有空格。这是我的控制台输出:(在/Users/*****/Desktop/LearningRuby/learn_ruby)$rake/Users/*******/Desktop/LearningRuby/learn_ruby/00_hello/hello_spec.rb:116:in`require':cannotloadsuchfile--hello(LoadError) 最佳
在我的Controller中,我通过以下方式在我的index方法中支持HTML和JSON:respond_todo|format|format.htmlformat.json{renderjson:@user}end在浏览器中拉起它时,它会自然地以HTML呈现。但是,当我对/user资源进行内容类型为application/json的curl调用时(因为它是索引方法),我仍然将HTML作为响应。如何获取JSON作为响应?我还需要说明什么? 最佳答案 您应该将.json附加到请求的url,提供的格式在routes.rb的路径中定义。这
我在pry中定义了一个函数:to_s,但我无法调用它。这个方法去哪里了,怎么调用?pry(main)>defto_spry(main)*'hello'pry(main)*endpry(main)>to_s=>"main"我的ruby版本是2.1.2看了一些答案和搜索后,我认为我得到了正确的答案:这个方法用在什么地方?在irb或pry中定义方法时,会转到Object.instance_methods[1]pry(main)>defto_s[1]pry(main)*'hello'[1]pry(main)*end=>:to_s[2]pry(main)>defhello[2]pry(main)
我使用的是Firefox版本36.0.1和Selenium-Webdrivergem版本2.45.0。我能够创建Firefox实例,但无法使用脚本继续进行进一步的操作无法在60秒内获得稳定的Firefox连接(127.0.0.1:7055)错误。有人能帮帮我吗? 最佳答案 我遇到了同样的问题。降级到firefoxv33后一切正常。您可以找到旧版本here 关于ruby-无法在60秒内获得稳定的Firefox连接(127.0.0.1:7055),我们在StackOverflow上找到一个类
我是Google云的新手,我正在尝试对其进行首次部署。我的第一个部署是RubyonRails项目。我基本上是在关注thisguideinthegoogleclouddocumentation.唯一的区别是我使用的是我自己的项目,而不是他们提供的“helloworld”项目。这是我的app.yaml文件runtime:customvm:trueentrypoint:bundleexecrackup-p8080-Eproductionconfig.ruresources:cpu:0.5memory_gb:1.3disk_size_gb:10当我转到我的项目目录并运行gcloudprevie
当我尝试安装Ruby时遇到此错误。我试过查看this和this但无济于事➜~brewinstallrubyWarning:YouareusingOSX10.12.Wedonotprovidesupportforthispre-releaseversion.Youmayencounterbuildfailuresorotherbreakages.Pleasecreatepull-requestsinsteadoffilingissues.==>Installingdependenciesforruby:readline,libyaml,makedepend==>Installingrub