2

node 调用php接口,node.js 怎么访问一个php接口?

 2 years ago
source link: https://blog.p2hp.com/archives/8555
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

node 调用php接口,node.js 怎么访问一个php接口?

可以的,以GET请求为例

var http = require('http');

var qs = require('querystring');

var data = {

a: 123,

time: new Date().getTime()};//这是需要提交的数据

var content = qs.stringify(data);

var options = {

hostname: '127.0.0.1',

port: 10086,

path: '/pay/pay_callback?' + content,

method: 'GET'

var req = http.request(options, function (res) {

console.log('STATUS: ' + res.statusCode);

console.log('HEADERS: ' + JSON.stringify(res.headers));

res.setEncoding('utf8');

res.on('data', function (chunk) {

console.log('BODY: ' + chunk);

req.on('error', function (e) {

console.log('problem with request: ' + e.message);

req.end();


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK