MCPcopy Index your code
hub / github.com/dataease/SQLBot / post

Method post

frontend/src/utils/request.ts:303–305  ·  view source on GitHub ↗
(url: string, data?: any, config?: FullRequestConfig)

Source from the content-addressed store, hash-verified

301
302 // POST request
303 public post<T = any>(url: string, data?: any, config?: FullRequestConfig): Promise<T> {
304 return this.request({ ...config, method: 'POST', url, data })
305 }
306
307 public async fetchStream(url: string, data?: any, controller?: AbortController): Promise<any> {
308 const token = wsCache.get('user.token')

Callers 15

uploadMethod · 0.95
datasource.tsFile · 0.80
setting.tsFile · 0.80
variables.tsFile · 0.80
license.tsFile · 0.80
workspaceUwsCreateFunction · 0.80
workspaceCreateFunction · 0.80
workspaceModelMappingAddFunction · 0.80
assistant.tsFile · 0.80
login.tsFile · 0.80
system.tsFile · 0.80
user.tsFile · 0.80

Calls 1

requestMethod · 0.95