javascript $ http req

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript $ http req相关的知识,希望对你有一定的参考价值。

// Simple GET request example:
$http({
  method: 'GET',
  url: '/someUrl'
}).then(function successCallback(response) {
    // this callback will be called asynchronously
    // when the response is available
  }, function errorCallback(response) {
    // called asynchronously if an error occurs
    // or server returns response with an error status.
  });
  
//  POST 
var req = {
 method: 'POST',
 url: 'http://example.com',
 headers: {
   'Content-Type': "application/json; charset=utf-8"
 },
 data: { test: 'test' }
}

$http(req).then(function(){...}, function(){...});
$http.get('/someUrl', config).then(successCallback, errorCallback);
$http.post('/someUrl', data, config).then(successCallback, errorCallback);

以上是关于javascript $ http req的主要内容,如果未能解决你的问题,请参考以下文章

node.js 核心http模块,起一个服务器,返回一个页面

JavaScript 导入模块混淆

如何使用nodejs从角度获得等效的“req.something”

如何将 createwriteStream 与 javascript 一起使用

import函数同步加载外部javascript文件

js 判断设备