4chan-promise 中文文档教程

发布于 5年前 浏览 17 项目主页 更新于 3年前

4chan-promise

具有承诺的 4Chan Javascript 客户端。

Usage

const chan = require("4chan-promise");

const paper = chan.getBoard("po");

async function printPages() {
  const pages = await biz.threads();
  console.log(pages);
}

async function getThread(threadId) {
  const thread = await biz.thread(threadId);
}

printPages();
getThread(570368);

Schema

要了解如何有效地使用它,您需要知道返回的对象的结构是什么。 请在此处查看。

4chan-promise

4Chan Javascript Client with Promises.

Usage

const chan = require("4chan-promise");

const paper = chan.getBoard("po");

async function printPages() {
  const pages = await biz.threads();
  console.log(pages);
}

async function getThread(threadId) {
  const thread = await biz.thread(threadId);
}

printPages();
getThread(570368);

Schema

To see how to use this effectively, you need to know what is the structure of the objects returned. Check it out here.

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文