wxmlify
v1.2.0
Plug-in ringan dan cepat yang membantu Anda menampilkan HTML yang dihasilkan oleh editor teks kaya di program mini WeChat.
<rich-text>
kaya>, namun kompatibilitasnya tidak dijamin untuk saat ini. Anda mungkin masih memerlukan alat penguraian pihak ketiga.font-size
, font-weight
dll. dari dokumen asli. // pages/index/index.js
var Wxmlify = require ( '../../wxmlify/wxmlify.js' )
Page ( {
onLoad ( ) {
// 以任何方式获得要解析的Html代码
var html = getHTMLStringSomehow ( )
// new 一个 wxmlify 实例就好了
var wxmlify = new Wxmlify ( html , this , { } )
}
} )
<!-- pages/index/index.wxml -->
< import src =" ../../wxmlify/wxmlify.wxml " />
< template is =" wxmlify " data =" {{nodes: wxmlified}} " > </ template >
new Wxmlify ( html , page [ , options ] )
this
di semua metode halamanstring
'wxmlified'
new Wxmlify ( html , this , {
dataKey : 'myRichText'
} )
Sejalan dengan itu di wxml:
< template is =" wxmlify " data =" {{nodes: myRichText}} " > </ template >
'all'
berarti mempertahankan semua gayafalse
, 0
, null
, berarti menghapus semua gaya bawaan['fontSize', 'fontWeight', 'background']
'all'
(biarkan semua gaya secara default) boolean
false
function
function() {}
. wxmlified-element {
/* 修改段落块的样式 */
}
. wxmlified-element . h1 {
/* 修改原<h1>标签块的样式,其它块级标签同理 */
}
. wxmlified-image {
/* 修改图片的样式 */
}
. wxmlified-text {
/* 修改文字节点的样式 */
}
. wxmlified-table . table {
/* table 的样式 */
border : 1 rpx solid # acacac ;
}
. wxmlified-table . tr {
/* tr 的样式 */
border-bottom : 1 rpx solid # acacac ;
}
. wxmlified-table . tr : last-child {
border-bottom : 0 ;
}
. wxmlified-table . th , . wxmlified-table . td {
/* th,td 的样式 */
border-right : 1 rpx solid # acacac ;
line-height : 2 ;
}
. wxmlified-table . th : last-child , . wxmlified-table . td : last-child {
border-right : none;
}
. wxmlified-table . th {
font-weight : bold;
}
? Alat kecil ini dimungkinkan berkat parser HTML-ke-JSON himalaya open source yang dibuat oleh Chris Andrejewski.