- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我是nodejs的新手,当然我会看到一些指南/截屏视频来学习一点;但我对异步/同步、读取文件以及 Nodejs 如何处理回调/返回非常感兴趣。例如,我无法从此请求查询返回变量:
function call (method, parameters){
fs.readFile("./cache/session", function(err, data){
var pieces = data.toString().split(),
sessionid = (method != "createsession") ? "/" + pieces[0] : "",
vars = (!parameters) ? "/" + parameters : "",
endpoint = "http://rest.svc/" + method + "json/";
request({ url: endpoint}, function(error, response, body){
if(!error)
return body;
})
})
}
“在纸上”,我的意思是在 javascript 上这将完美地工作,但在 Node 中总是返回一个 未定义
,我在 stackoverflow 上阅读了有关此的其他帖子,但没有人对我进行澄清。
最佳答案
使用异步函数,例如 call
需要您将回调参数传递给函数,然后回调的参数就是您的“返回”,因为异步函数将在您的 fs.readFile
响应之前返回(未定义)。
function call (method, parameters, callback){
fs.readFile("./cache/session", function(err, data){
var pieces = data.toString().split(),
sessionid = (method != "createsession") ? "/" + pieces[0] : "",
vars = (!parameters) ? "/" + parameters : "",
endpoint = "http://rest.svc/" + method + "json/";
request({ url: endpoint}, function(error, response, body){
if(!error)
callback(body)
})
})
}
关于javascript - Node.js 中的函数总是返回 undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28480879/
我只是有一个更琐碎的问题。 为什么undefined == undefined 返回true,而undefined >= undefined 为false? undefined 等于 undefine
用PHP 7.2编写套接字服务器。根据Firefox 60中的“网络”选项卡,服务器的一些HTTP响应的第一行随机变为undefined undefined undefined。因此,我尝试记录套接字
在 JavaScript 中这是真的: undefined == undefined 但这是错误的: undefined <= undefined 起初我以为<=运算符包含第一个,但我猜它试图将其转换
在回答这个问题 (Difference between [Object, Object] and Array(2)) 时,我在 JavaScript 数组中遇到了一些我以前不知道的东西(具有讽刺意味的
来自https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/of , Note: thi
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
当我添加 到我的 PrimeFaces Mobile 页面,然后我在服务器日志中收到以下警告 WARNING: JSF1064: Unable to find or serve resource, u
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我是一名优秀的程序员,十分优秀!