9b395f5cc3
Build Chrome Extension / build (push) Waiting to run
Trigger Website Rebuild (Docs Updated) / dispatch (push) Waiting to run
E2E Headed Chrome / e2e-headed (macos-15) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (ubuntu-latest) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (windows-latest) (push) Has been cancelled
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / bun-test (push) Has been cancelled
CI / adapter-test (push) Has been cancelled
CI / smoke-test (macos-latest) (push) Has been cancelled
CI / smoke-test (ubuntu-latest) (push) Has been cancelled
Security Audit / audit (push) Has been cancelled
35 lines
990 B
JavaScript
35 lines
990 B
JavaScript
import { cli } from '@jackwener/opencli/registry';
|
|
|
|
cli({
|
|
site: 'nowcoder',
|
|
name: 'suggest',
|
|
access: 'read',
|
|
description: 'Search suggestions',
|
|
domain: 'www.nowcoder.com',
|
|
args: [
|
|
{ name: 'query', positional: true, required: true, help: 'Search keyword' },
|
|
],
|
|
columns: ['rank', 'suggestion', 'type'],
|
|
pipeline: [
|
|
{ navigate: 'https://www.nowcoder.com' },
|
|
{ evaluate: `(async () => {
|
|
const query = \${{ args.query | json }};
|
|
const r = await fetch('https://gw-c.nowcoder.com/api/sparta/search/suggest', {
|
|
method: 'POST',
|
|
credentials: 'include',
|
|
headers: {'Content-Type': 'application/json'},
|
|
body: JSON.stringify({query})
|
|
});
|
|
const d = await r.json();
|
|
if (!d.success) throw new Error(d.msg || 'suggest failed');
|
|
return (d.data?.records || []).map((item, i) => ({
|
|
rank: i + 1,
|
|
suggestion: item.name || '',
|
|
type: item.typeName || 'general',
|
|
}));
|
|
})()
|
|
` },
|
|
{ limit: '10' },
|
|
],
|
|
});
|