您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關小程序將富文本轉換為文本的示例,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
小程序怎么把富文本轉換為文本?
微信小程序-富文本轉文本
最近小程序這么火,我也來搞搞。發現了一個惡心的問題。小程序沒有組件能支持富文本內容的,改接口又不太合適,于是有了這問,沒技術含量純粹記錄
首先我們看眼沒有被格式的富文本顯示:
*.wxml內代碼。content是富文本內容 <view> <text>{{content}}</text> </view>
顯示結果:
小程序無法解析html
由以上圖片看到,小程序無法解析html文件
我們需要處理html富文本內容,讓其顯示好看點
下面直接上代碼了,主要功能就是利用js的replace 對富文本經行處理,大家可以看一下。一起優化,方便對富文本更好的處理。
convertHtmlToText: function convertHtmlToText(inputText) { var returnText = "" + inputText; returnText = returnText.replace(/<\/div>/ig, '\r\n'); returnText = returnText.replace(/<\/li>/ig, '\r\n'); returnText = returnText.replace(/<li>/ig, ' * '); returnText = returnText.replace(/<\/ul>/ig, '\r\n'); //-- remove BR tags and replace them with line break returnText = returnText.replace(/<br\s*[\/]?>/gi, "\r\n"); //-- remove P and A tags but preserve what's inside of them returnText=returnText.replace(/<p.*?>/gi, "\r\n"); returnText=returnText.replace(/<a.*href="(.*?)".*>(.*?)<\/a>/gi, " $2 ($1)"); //-- remove all inside SCRIPT and STYLE tags returnText=returnText.replace(/<script.*>[\w\W]{1,}(.*?)[\w\W]{1,}<\/script>/gi, ""); returnText=returnText.replace(/<style.*>[\w\W]{1,}(.*?)[\w\W]{1,}<\/style>/gi, ""); //-- remove all else returnText=returnText.replace(/<(?:.|\s)*?>/g, ""); //-- get rid of more than 2 multiple line breaks: returnText=returnText.replace(/(?:(?:\r\n|\r|\n)\s*){2,}/gim, "\r\n\r\n"); //-- get rid of more than 2 spaces: returnText = returnText.replace(/ +(?= )/g,''); //-- get rid of html-encoded characters: returnText=returnText.replace(/ /gi," "); returnText=returnText.replace(/&/gi,"&"); returnText=returnText.replace(/"/gi,'"'); returnText=returnText.replace(/</gi,'<'); returnText=returnText.replace(/>/gi,'>'); return returnText; }
將上面代碼放入任意適合的小程序js文件中,
然后在需要處理數據的js文件里,引入文件,下面給出放入app.js文件中的調用示例:
var app = getApp()//獲取app小程序實例 onLoad: function (options) { wx.request({ url: 'http://example.com/api' + options.id+'.json', headers: { 'Content-Type': 'application/json' }, success: function (res) { res.data.content = app.convertHtmlToText(res.data.content ) that.setData({ art: res.data.content }) console.log(res.data) } }) }
然后編譯刷新下,可以看到結果了:
結果
這里可以繼續調整下css,使顯示得更好看點。
關于“小程序將富文本轉換為文本的示例”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。