91人妻人人澡人人爽人人精品,久久婷婷婬片A片AAA,人人妻人人澡人人爽人人DVD,国产三级片在线观看
登錄 log in
動(dòng)態(tài)
DYNAMIC STATE
首頁    >   動(dòng)態(tài)   
>   如何發(fā)布動(dòng)態(tài)和文章
HOME    >   DYNAMIC STATE   
>   如何發(fā)布動(dòng)態(tài)和文章
王慧慧
浙江千仞網(wǎng)絡(luò)股份有限公司
1700559217000

如何發(fā)布動(dòng)態(tài)和文章

 
 
 
 
 
 

如何發(fā)布動(dòng)態(tài)

&文章



方法一

1、微信搜索小程序:名言時(shí)代

2、進(jìn)入小程序后,點(diǎn)擊下方“應(yīng)用”

3、點(diǎn)擊“動(dòng)態(tài)”

4、點(diǎn)擊下方“添加動(dòng)態(tài)”

5、選擇“發(fā)布動(dòng)態(tài)”或“發(fā)布文章”

6、若發(fā)布動(dòng)態(tài),編輯好動(dòng)態(tài)內(nèi)容,點(diǎn)擊下方“發(fā)布”,即可發(fā)布動(dòng)態(tài)

7、若發(fā)布文章,上傳好文章封面,輸入文章標(biāo)題與內(nèi)容,點(diǎn)擊下方“發(fā)布”,即可發(fā)布文章






方法二

1、進(jìn)入小程序后,點(diǎn)擊“發(fā)現(xiàn)美”

2、點(diǎn)擊“小世界”或“大世界”

3、點(diǎn)擊右下方“+”號(hào)

4、選擇“發(fā)布動(dòng)態(tài)”或“發(fā)布文章”




好啦

本期就到這里

你學(xué)會(huì)了嗎

快來試試看吧!


【END】


` if(dynamicsTypeOne==1){ if(dynamicsTitleOne){ let textBox = document.createElement('div') textBox.innerHTML = dynamicsTitleOne textBox.style.fontSize = '0.3rem' textBox.style.marginBottom = '0.3rem' textBox.style.textAlign = 'center' document.querySelector('.content').appendChild(textBox) } if(dynamicsCoverOne){ let videoBox = document.createElement('video') videoBox.src = imgHead(dynamicsCoverOne) videoBox.autoplay = true videoBox.loop = true videoBox.controls = true videoBox.style.width = '100%' videoBox.style.marginBottom = '0.2rem' document.querySelector('.content').appendChild(videoBox) } if(dynamicsDetailOne){ //好像是視頻封面圖 // dynamicsDetailOne = dynamicsDetailOne.split(',') // dynamicsDetailOne.forEach((item,value)=>{ // let imgBox = document.createElement('img') // imgBox.src = imgHead(item) // document.querySelector('.trends_detail_mainBox').appendChild(imgBox) // }) } }else if(dynamicsTypeOne==0) { console.log('00000000000123'); if(dynamicsTitleOne){ let textBox = document.createElement('div') textBox.innerHTML = dynamicsTitleOne textBox.style.fontSize = '0.3rem' textBox.style.marginBottom = '0.3rem' textBox.style.textAlign = 'center' document.querySelector('.content').appendChild(textBox) } if(dynamicsDetailOne){ if(dynamicsTitleOne){ let dynamicsDetail = JSON.parse(dynamicsDetailOne) dynamicsDetail.forEach(item=>{ if(item.type==1){ let textBox = document.createElement('div') textBox.innerHTML = item.value textBox.style.fontSize = '0.3rem' textBox.style.marginBottom = '0.3rem' textBox.style.textAlign = 'center' document.querySelector('.content').appendChild(textBox) } if(item.type==2){ let imgBox = document.createElement('img') imgBox.src = imgHead(item.value) document.querySelector('.content').appendChild(imgBox) } }) }else { let textBox = document.createElement('div') textBox.innerHTML = dynamicsDetailOne textBox.style.fontSize = '0.3rem' textBox.style.marginBottom = '0.3rem' textBox.style.textAlign = 'center' document.querySelector('.content').appendChild(textBox) } } if(dynamicsCoverOne){ dynamicsCoverOne = dynamicsCoverOne.split(',') dynamicsCoverOne.forEach((item,value)=>{ let imgBox = document.createElement('img') imgBox.src = imgHead(item) if(value == dynamicsCoverOne.length-1){ imgBox.style.marginBottom = '0.2rem' } document.querySelector('.content').appendChild(imgBox) }) } }else { if(dynamicsTitleOne && dynamicsTypeOne!=3){ let textBox = document.createElement('div') textBox.innerHTML = dynamicsTitleOne textBox.style.fontSize = '0.3rem' textBox.style.marginBottom = '0.3rem' textBox.style.textAlign = 'center' document.querySelector('.content').appendChild(textBox) } if(dynamicsCoverOne && dynamicsTypeOne!=3){ dynamicsCoverOne = dynamicsCoverOne.split(',') dynamicsCoverOne.forEach((item,value)=>{ let imgBox = document.createElement('img') imgBox.src = imgHead(item) if(value == dynamicsCoverOne.length-1){ imgBox.style.marginBottom = '0.2rem' } document.querySelector('.content').appendChild(imgBox) }) } if(dynamicsDetailOne){ let textBox = document.createElement('div') textBox.innerHTML = dynamicsDetailOne textBox.style.fontSize = '0.2rem' document.querySelector('.content').appendChild(textBox) } } let timeone = $(".middle_right").text() console.log(timeone,'timeone'); // 輸出格式化后的日期字符串 if(timeone){ let timestamp = timeone.trim()*1; // 創(chuàng)建一個(gè)新的 Date 對(duì)象,并將時(shí)間戳作為參數(shù)傳遞 const date = new Date(timestamp); // 使用 Date 對(duì)象的方法來獲取日期和時(shí)間 const year = date.getFullYear(); const month = date.getMonth() + 1; // 月份從 0 開始,所以要加 1 const day = date.getDate(); const hours = date.getHours(); const minutes = date.getMinutes(); const seconds = date.getSeconds(); console.log(year,'year'); console.log(month,'month'); console.log(day,'day'); console.log(hours,'hours'); console.log(minutes,'minutes'); console.log(seconds,'seconds'); // 格式化日期輸出 const formattedDate = year+'-'+((month<10)?('0'+month):month)+'-'+((day<10)?('0'+day):day)+' '+((hours<10)?('0'+hours):hours)+':'+((minutes<10)?('0'+minutes):minutes); console.log(formattedDate); // 輸出格式化后的日期字符串 let timetwo = '發(fā)布日期:'+formattedDate $(".middle_right").html(timetwo) }else{ $(".middle_right").html('') }