Commit 19365be1 authored by 孙傲's avatar 孙傲

解决连接超过4K限制问题

parent 83f3d678
......@@ -51,9 +51,9 @@ class DatabaseManagementSystem {
let { data: { data } } = await this.http({
url: query,
params: {
database: database,
params: queryParameters ? JSON.stringify(queryParameters) : null
}
database: database
},
data: queryParameters ? `-- ${JSON.stringify(queryParameters)}` : null,
});
return data;
}
......
{
"name": "nodejs-yitong-sdk",
"version": "1.0.4",
"version": "1.0.5",
"description": "",
"main": "index.js",
"scripts": {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment