如何 运行 serp 节点客户端
how to run serp node client
我是 Node js 的新手。请告诉我如何使用此节点客户端 https://www.npmjs.com/package/serp
const serp = require("serp");
var options = {
host : "google.fr",
qs : {
q : "test",
filter : 0,
pws : 0
},
num : 100
};
const links = await serp.search(options);
当我运行这个代码时,我收到以下错误
SyntaxError: await is only valid in async function
非常感谢大家的帮助!
声明函数时,可以选择添加 async property. This will make the function asynchronous。
这会启用函数内部的 await
属性 并允许代码在继续之前等待任务完成。
声明异步函数的示例:
// Declare the function
async function search() {
// Run asynchronous code
const serp = require("serp");
var options = {
host : "google.fr",
qs : {
q: "test",
filter: 0,
pws: 0
},
num : 100
};
const links = await serp.search(options);
}
// Run the function
search();
我是 Node js 的新手。请告诉我如何使用此节点客户端 https://www.npmjs.com/package/serp
const serp = require("serp");
var options = {
host : "google.fr",
qs : {
q : "test",
filter : 0,
pws : 0
},
num : 100
};
const links = await serp.search(options);
当我运行这个代码时,我收到以下错误
SyntaxError: await is only valid in async function
非常感谢大家的帮助!
声明函数时,可以选择添加 async property. This will make the function asynchronous。
这会启用函数内部的 await
属性 并允许代码在继续之前等待任务完成。
声明异步函数的示例:
// Declare the function
async function search() {
// Run asynchronous code
const serp = require("serp");
var options = {
host : "google.fr",
qs : {
q: "test",
filter: 0,
pws: 0
},
num : 100
};
const links = await serp.search(options);
}
// Run the function
search();