Feed Back
初始化
import { FeedBack } from '@polyv/interactions-receive-sdk';
const feedBackSdk = new FeedBack();
// 销毁 SDK 实例,清除逻辑
feedBackSdk.destroy();获取验证码
await feedBackSdk.getcode();提交投诉反馈
await feedBackSdk.feedbackSave({
/** 反馈类型,必填 */
type: string;
/** 所属分类,必填 */
label: string;
/** 验证码ID,必填 */
captchaId: string;
/** 验证码值,必填 */
captchaValue: string;
/** 反馈详细内容 */
content: string;
/** 联系方式 */
contact: string;
/** 图片,数组格式,binary文件 */
imageFiles: string[];
});注意
Last updated