npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

zan-pc-ajax

v5.1.0

Published

PC ajax库

Downloads

130

Readme

zan-pc-ajax

用于 PC 端的 ajax 请求库, 基于 Promiseajax 实现,支持 browser 和 node 环境,jsonp 不支持 node。

**使用时请确保存在全局的Promise实现。**推荐 es6-promise

zan-ajax的关系

zan-ajax 是通用的包,不包含任何业务相关的处理逻辑(比如对非零 code 的处理),zan-pc-ajax 是在 zan-ajax 基础上加上了 PC 端的业务逻辑。

PC 端都应该使用这个库来发请求。

代码演示

import ajax from "zan-pc-ajax";

// get
ajax({
  url: "http://youzan.com/some.json",
  data: {
    quux: 2,
  },
})
  .then((data) => {})
  .catch((msg) => {});

// post
ajax({
  url: "http://youzan.com/some.json",
  method: "POST",
  data: {
    foobar: 1,
  },
});

// 通过 rawResponse 获取请求的原始数据
ajax({
  url: "http://youzan.com/some.json",
  data: {
    quux: 2,
  },
  rawResponse: true,
})
  .then((resp) => {
    const { code, data } = resp;
  })
  .catch((resp) => {
    const { code, msg } = resp;
  });

// jsonp
ajax({
  url: "http://youzan.com/some.jsonp",
  dataType: "jsonp",
  data: {
    foobar: 2,
  },
});

// Node 端假如需要处理一些 Java 的长整数类型的 JSON 字段,可以使用 allowBigNumberInJSON 将这些数字存储为字符串
ajax({
  url: "http://youzan.com/some-java-api-with-long-long-in-json",
  allowBigNumberInJSON: true,
});

API

函数原型 ajax(ajaxOptions): Promise

ajaxOptions 是请求的参数。返回值是一个 Promise,请求成功会 resolve,请求失败会 reject

ajax

| 参数 | 说明 | 类型 | 默认值 | 备选值 | 是否必填 | | ---------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------- | | url | 请求的地址 | string | | | 是 | | method | 请求的类型 | string | GET | GET | HEAD | POST | DELETE | PUT | PATCH | 否 | | data | 请求的参数,GET / HEAD类请求会作为 URL 参数,POST | PUT等请求会作为body | object | | | 否 | | contentType | 发送给服务器的数据类型 | string | POST | PUT | DELETE | PATCH 请求默认值为 'application/x-www-form-urlencoded; charset=UTF-8' | | 否 | | dataType | 请求的返回值类型 | string | 'json' | jsonp | arraybuffer | blob | document | json | text | stream | 否 | | headers | HTTP 请求的头 | object | { 'X-Requested-With': 'XMLHttpRequest' } | | 否 | | noXRequestedWithHeader | 是否强制加上X-Requested-With这个头,这个头会触发 CORS preflight,默认为 true, 不带这个头,设为 false 的话会强制加上这个头 | bool | true | true | false | 否 | | withCredentials | indicates whether or not cross-site Access-Control requests should be made using credentials | bool | false | false | true | 否 | | username | HTTP 请求的用户名 | string | | | 否 | | password | HTTP 请求的密码 | string | | | 否 | | timeout | 请求的超时时间,0 表示没有超时 | number | 10000 | | 否 | | onUploadProgress | 上传请求的进度回调函数,参数是 progressEvent | func | | | 否 | | onDownloadProgress | 下载请求的进度回调函数,参数是 progressEvent | func | | | 否 | | cancelToken | 用来取消请求的 token,具体请看下面的取消请求文档 | CancelToken | | | 否 | | rawResponse | 如果为true的话,resolvereject的参数会是服务器返回的原始数据 | bool | false | true | false | 否 | | allowBigNumberInJSON | 如果为 true 的话,使用 zan-json-parse 来解析 JSON,这个 parser 会把一些浮点数无法表示的数字存储为字符串。一般在 node 后端项目里需要用到这个。 | bool | false | true | false | 否 | | disableCsrfToken | 如果为 true 的话,不会自动将 csrf_token 加到请求体里面 | bool | false | true | false | 否 | | csrfMode | 用于配置 csrf_token 放在 http 请求中的位置 配置为 'node' csrf_token 将通过请求头 headers['csrf-token'] 传输 配置为'iron' csrf_token 将通过请求体 data[csrf_token] 传输 | string | 'node' | 'node' | 'iron' | 否 |

jsonp

dataTypejsonp 的时候这些参数有效。

| 参数 | 说明 | 类型 | 默认值 | 备选值 | 是否必填 | | ------------- | --------------------------------------------------------------------------------------------- | ------------------ | -------------------------------- | ----------------- | -------- | | url | 请求的地址 | string | | | 是 | | data | 请求的参数,作为 url 参数发送 | object | | | 否 | | jsonp | JSONP请求的回调参数名称, callback=__jp01中的callback部分 | string | 'callback' | | 否 | | jsonpCallback | JSONP请求的回调函数名,如果是函数则使用函数的返回值,callback=__jp01中的__jp01部分 | string | function | 每次请求都生成一个不一样的字符串 | | 否 | | prefix | JSONP 请求回调函数名字的前缀,callback=__jp01中的__jp部分,后面的部分会用随机字符串填充 | string | '__jp' | 否 | | timeout | 请求的超时时间,0 表示没有超时 | number | 10000 | | 否 | | cache | 浏览器缓存策略,设置为false,会强制浏览器不缓存请求 | bool | false | true | false | 否 | | rawResponse | 如果为true的话,resolvereject的参数会是服务器返回的原始数据 | bool | false | true | false | 否 |

rawResponse 的说明

// 对于下面这个请求返回值
// rawResponse为true,resolve/reject拿到的是后端返回的原始数据
// rawResponse为false, resolve拿到的是data字段下的值;reject拿到的是msg下的值
{
  "code": 0,
  "msg": "",
  "data": {
    "id": "63077",
    "shop_id": "63077",
    "team_name": "\u8d77.\u7801\u8fd0\u52a8\u9986a",
  }
}

取消请求

使用 ajax 上的 CancelToken 创建 token,有两种使用方式。

不同的请求可以使用同一个 token,调用这个 token 的 cancel 方法时会同时取消所有使用这个 token 的请求。

jsonp 请求不支持取消操作。

var CancelToken = ajax.CancelToken;
var source = CancelToken.source();

ajax({
  url: "/user/12345",
	cancelToken: source.token,
	
	// 使用 isCancel 必须是  rawResponse 模式
	// 只是使用 source.cancel 的话则没有这个限制
  rawResponse: true,
}).catch(function (thrown) {
  if (ajax.isCancel(thrown)) {
    console.log("Request canceled", thrown.message);
  } else {
    // handle error
  }
});

// cancel the request (the message parameter is optional)
source.cancel("Operation canceled by the user.");
var CancelToken = ajax.CancelToken;
var cancel;

ajax({
  url: "/user/12345",
  cancelToken: new CancelToken(function executor(c) {
    // An executor function receives a cancel function as a parameter
    cancel = c;
  }),
});

// cancel the request
cancel();

URL 参数序列化

内部使用的序列化函数等价于 jQuery.param(value, false)

多域名支持

为了支持多域名请求 Host,默认从 runtime 中获取由 pc-shared 下发的 zan-pc-ajax,兜底使用原始 Ajax。

使用者无需感知这个改动,正常引用就好。如果需要强制使用非 runtime 版本,可以 import { rawPcAjax } from 'zan-pc-ajax' 导入原始 Ajax(99.99% 没有使用的场景)。