(精华)2020年7月30日 微信小程序 富文本和文本的使用
发布日期:2021-06-29 15:08:32 浏览次数:2 分类:技术文章

本文共 2801 字,大约阅读时间需要 9 分钟。

富文本

const htmlSnip =`

Title

Life is like a box of  chocolates.

`const nodeSnip =`Page({ data: { nodes: [{ name: 'div', attrs: { class: 'div_class', style: 'line-height: 60px; color: red;' }, children: [{ type: 'text', text: 'You never know what you're gonna get.' }] }] }})`Page({
onShareAppMessage() {
return {
title: 'rich-text', path: 'page/component/pages/rich-text/rich-text' } }, data: {
htmlSnip, nodeSnip, renderedByHtml: false, renderedByNode: false, nodes: [{
name: 'div', attrs: {
class: 'div_class', style: 'line-height: 60px; color: #1AAD19;' }, children: [{
type: 'text', text: 'You never know what you\'re gonna get.' }] }] }, renderHtml() {
this.setData({
renderedByHtml: true }) }, renderNode() {
this.setData({
renderedByNode: true }) }, enterCode(e) {
console.log(e.detail.value) this.setData({
htmlSnip: e.detail.value }) }})
通过HTML String渲染
{
{
htmlSnip}}
通过节点渲染
{
{
nodeSnip}}

文本

const texts = [  '2011年1月,微信1.0发布',  '同年5月,微信2.0语音对讲发布',  '10月,微信3.0新增摇一摇功能',  '2012年3月,微信用户突破1亿',  '4月份,微信4.0朋友圈发布',  '同年7月,微信4.2发布公众平台',  '2013年8月,微信5.0发布微信支付',  '2014年9月,企业号发布',  '同月,发布微信卡包',  '2015年1月,微信第一条朋友圈广告',  '2016年1月,企业微信发布',  '2017年1月,小程序发布',  '......']Page({
onShareAppMessage() {
return {
title: 'text', path: 'page/component/pages/text/text' } }, data: {
text: '', canAdd: true, canRemove: false }, extraLine: [], add() {
this.extraLine.push(texts[this.extraLine.length % 12]) this.setData({
text: this.extraLine.join('\n'), canAdd: this.extraLine.length < 12, canRemove: this.extraLine.length > 0 }) setTimeout(() => {
this.setData({
scrollTop: 99999 }) }, 0) }, remove() {
if (this.extraLine.length > 0) {
this.extraLine.pop() this.setData({
text: this.extraLine.join('\n'), canAdd: this.extraLine.length < 12, canRemove: this.extraLine.length > 0, }) } setTimeout(() => {
this.setData({
scrollTop: 99999 }) }, 0) }})
{
{
text}}

转载地址:https://codeboy.blog.csdn.net/article/details/107685872 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:(精华)2020年7月30日 微信小程序 富文本编辑器的使用
下一篇:(精华)2020年7月30日 微信小程序 进度条的使用

发表评论

最新留言

哈哈,博客排版真的漂亮呢~
[***.90.31.176]2024年04月21日 23时01分05秒