AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
**visitServer** 访问服务端接口 **返回值** 无返回值,成功后回调函数(result.d即服务端接口返回值)和失败后回调函数 **参数** | 名称 | 类型 | 描述 |必填 | --- | --- | --- |--- | | url | string | 服务url |是 | data | string | json格式的字符串 | | onsuccess | function | 访问成功后调用的回调函数 | | onerror | function | 访问出错后调用的回调函数 | | sync| bool| 是否同步调用 | **示例** ``` visitServer($.format('CallStringMethod?method=CopyDocTemp2Disk&id={0}&folder={1}', docId, UploadSubFolder), null, function (result) { if (result.d) onlineEditDoc(result.d); }); ```