W3Cschool
恭喜您成為首批注冊用戶
獲得88經驗值獎勵
基礎庫 3.100.4 版本開始支持,以下版本請使用小程序發(fā)布器組件。
解釋: 關閉原生半屏回復內容發(fā)布器。
Object object
屬性名 | 類型 | 必填 | 默認值 | 說明 |
---|---|---|---|---|
success |
Function |
否 |
發(fā)布內容的回調函數(shù) |
|
fail |
Function |
否 |
調起失敗的回調函數(shù) |
|
complete |
Function |
否 |
接口調用結束的回調函數(shù)(調用成功、失敗都會執(zhí)行) |
<view class="wrap">
<view class="card-area">
<view class="top-description border-bottom">
<view>基礎用法</view>
<view>moduleList:[]</view>
</view>
<button type="primary" bindtap="openReplyEditor">打開文本半屏發(fā)布器</button>
</view>
<view class="card-area">
<view class="top-description border-bottom">
<view>展示全部功能</view>
<view>moduleList:['image','emoji']</view>
</view>
<button type="primary" bindtap="openReplyEditorAll">打開圖文半屏發(fā)布器</button>
</view>
</view>
Page({
openReplyEditor() {
swan.openReplyEditor({
sendBackgroundColor: '#3388ff',
sendTextColor: '#FFFFFF',
contentPlaceholder: '請輸入評論內容',
moduleList: [],
success: res => {
console.log('openReplyEditor success', res);
// 點擊了發(fā)表按鈕
if (res.status === 'reply' || res.status === 'replay') {
// 開發(fā)者處理返回內容。
swan.showToast({
title: '發(fā)表成功',
icon: 'none'
});
swan.closeReplyEditor();
// 主動關閉評論發(fā)布器
}
else if (res.status === 'draft') {
// 處理草稿內容,如ui處理
}
},
fail: err => {
console.log('openReplyEditor fail', err);
},
complete: res => {
console.log('openReplyEditor complete', res);
}
});
},
openReplyEditorAll() {
swan.openReplyEditor({
sendBackgroundColor: '#3388ff',
sendTextColor: '#FFFFFF',
contentPlaceholder: '請輸入評論內容',
moduleList: ['emoji', 'image'],
emojiPath: '../emojidata',
success: res => {
this.setData({
res: 'openReplyEditor success' + JSON.stringify(res)
});
console.log('openReplyEditor success', res);
if (res.status === 'reply' || res.status === 'replay') {
swan.showToast({
title: '發(fā)表成功',
icon: 'none'
});
swan.closeReplyEditor();
}
},
fail: res => {
console.log('openReplyEditor fail', res);
},
complete: res => {
console.log('openReplyEditor complete', res);
}
});
}
});
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: