首页 > 编程语言 >微信小程序的商品详情html转小程序语法

微信小程序的商品详情html转小程序语法

时间:2023-01-11 18:03:56浏览次数:38  
标签:node src attr img 微信 程序 results html imgUrl


加强:

//对img添加额外数据
if (node.tag === 'img') {

if (node.attr.src.indexOf("http") == -1){

node.imgIndex = results.images.length;
var imgUrl = "http://www.yudw.com/" + node.attr.src;
if (imgUrl[0] == '') {
imgUrl.splice(0, 1);
}
imgUrl = wxDiscode.urlToHttpUrl(imgUrl, __placeImgeUrlHttps);

node.attr.src = imgUrl;
node.from = bindName;
results.images.push(node);
results.imageUrls.push(imgUrl);
}
}

如果html中带有img标签,则给img标签加上前缀

【虽然这一步也可以在后端的接口中处理】

标签:node,src,attr,img,微信,程序,results,html,imgUrl
From: https://blog.51cto.com/jing/6002492

相关文章

  • 超好看的小程序UI
    地址:​​https://wux-weapp.github.io/wux-weapp-docs/#/introduce​​ 预览:......
  • 小程序水平居中、垂直居中
    display:flex;justify-content:center;当 ​​display:flex​​​ 配合 ​​justify-content:center​​ 使用时可以让view水平居中......
  • 关掉小程序控制台的索引情况提示
    "description":"项目配置文件。","setting":{"urlCheck":true,"es6":true,"postcss":true,"minified":true,"newFeature":true,"checkSiteM......
  • 《程序是怎样跑起来的第九章》
    随着时代的发展,有许多的功能都被追加到监控程序中,监控程序是仅具有加载和运行功能。因此操作系统本身并不是单独的程序,而是多个程序的集合体。那么我们就要意识到操作系统......
  • 微信小程序基础控件,入门(2),
    ​scroll-view纵向滚动<viewclass="page-section-title"bindtap='toRefreshPage'><text>VerticalScroll\n纵向滚动</text></view><viewclass="pa......
  • 程序员像是武侠小说中的武者,毕生练武,探索奥秘
    相信很多和我一样的同学都考虑过这样的问题,那就是,进入互联网行业做一个程序员实际收入真的比之前高吗?会高多少?在大城市生活真的会比小县城舒服吗……我不知道,我也回答不了这......
  • 在Red Hat Linux中自动运行程序
    转载文章,地址:http://hi.baidu.com/wangtao8899/blog/item/dd7365c41c5423a18226ace1.html 1.开机启动时自动运行程序    Linux加载后,它将初始化硬件和设备驱动,然......
  • debian11设置开机启动程序
    1.新建内容vim/etc/rc.local写入以下内容#!/bin/bash# #rc.local # #Thisscriptisexecutedattheendofeachmultiuserrunlevel. #Makesurethat......
  • 组装式应用新基建——小程序容器技术
    什么是组装式应用?“组装式应用由以业务为中心的模块化组件构成,具备更易使用和可重复使用的代码,可加速新软件解决方案的上市时间,并释放企业价值。”未来的企业是组装式的,那么......
  • python+requests+excel+unittest+ddt接口自动化数据驱动并生成html报告(优化版)
    本文章内容是基于上海-悠悠的版本,进行了优化,增加了部分内容,详细请查阅下文。(目录)1、原文链接python+requests+excel+unittest+ddt接口自动化数据驱动并生成html报告2......