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