zoukankan
html css js c++ java
superagent-promise
var Promise
=
this
.
Promise
||
require
(
'promise
'
)
;
var agent
=
require
(
'superagent-promise
'
)
(
require
(
'superagent
'
)
, Promise
)
;
// method, url form with `end`
agent
(
'GET
'
,
'
http://google.com
'
)
.
end
(
)
.
then
(
function
onResult
(
res
)
{
// do stuff
}
,
function
onError
(
err
)
{
//err.response has the response from the server
}
)
;
// method, url form with `then`
agent
(
'GET
'
,
'
http://google.com
'
)
.
then
(
function
onResult
(
res
)
{
// do stuff
}
)
;
// helper functions: options, head, get, post, put, patch, del
agent
.
put
(
'
http://myxfoo
'
,
'data
'
)
.
end
(
)
.
then
(
function
(
res
)
{
// do stuff`
}
)
;
// helper functions: options, head, get, post, put, patch, del
agent
.
put
(
'
http://myxfoo
'
,
'data
'
)
.
.
then
(
function
(
res
)
{
// do stuff
}
)
;
查看全文
相关阅读:
构建之法第九、十章读后感
构建之法第七章读后感
构建之法五、六章读后感
构建之法第四章读后感
一组阶段小记之再读构建之法
打印控件
TTS语音
VS2005通过网络连接CE设备进行调试开发
Windows XP下安装WinCE6.0开发环境
利用VS2005创建WINCE 6.0 平台
原文地址:https://www.cnblogs.com/Gbeniot/p/7326357.html
最新文章
恢复WIn10 2004的“要使用本计算机,用户必须输入用户名和密码”选项
plantuml server with math docker image
[bash] 编写7zz函数替换7z压缩命令
Chrome 不跟随 macOS 系统主题改变深色模式
VSCode的浅色主题(Default Light+)侧边活动栏改为浅色
小妖精的完美游戏教室——人工智能,A*算法,启发因子篇
小妖精的完美游戏教室——人工智能,A*算法,导航网络篇
小妖精的完美游戏教室——人工智能,A*算法,结点篇
小妖精的完美游戏教室——人工智能,A*算法,实现篇
小妖精的完美游戏教室——buff系统
热门文章
小妖精的完美游戏教室——技能系统
小妖精的完美游戏教室——东方PROJECT,同人,墙
小妖精的完美游戏教室——东方PROJECT,同人,符卡系统
小妖精的完美游戏教室——东方PROJECT,同人,th12灵梦A
小妖精的完美游戏教室——东方PROJECT,同人,子机
软件工程综合实践随笔(二)
软件工程综合实践随笔(一)
一组阶段小记之考试周
构建之法第十二章读后感
构建之法第十一章读后感
Copyright © 2011-2022 走看看