当前位置: 首页 > news >正文

网站好友邀请链接生成 php精准营销方式有哪些

网站好友邀请链接生成 php,精准营销方式有哪些,做教育网站多少钱,地推推广方案1、问题概述 常见情景1:在VUE中使用img显示图片的时候,通过传参的方式传入图片的路径和名称,VUE不加载本地资源而是通过http://localhost:8080/...的地址去加载网络资源,从而出现了图片无法显示的情况。 常见情景2:针…

1、问题概述

常见情景1在VUE中使用img显示图片的时候,通过传参的方式传入图片的路径和名称,VUE不加载本地资源而是通过http://localhost:8080/...的地址去加载网络资源,从而出现了图片无法显示的情况。

常见情景2针对上述的问题,我们有些人会使用require函数去设置程序,告诉VUE你加载资源的时候加载本地资源,这个时候回报错:VUE使用require报错:Uncaught Error: cannot module ‘asstes/logo.png’

2、常规的使用图片方式

1、<img src=”../images/1.png” />

2、<img src=”http://....//2.png” />

这种直接通过相对路径获取项目下的图片或者直接使用或传入网络资源是没有问题的。

3、期望使用动态的图片地址

案例说明:在vue中通过ref创建了一个响应式的参数imgUrl,图片的路径是asstes/logo.png,在templateimg通过:src绑定使用了imgUrl,这个时候图片是无法显示的。

原因:vue没有将当前的图片信息当成是本地的静态资源处理,而是当成了网络资源处理,所以报错404找不到资源。

<template><div><img :src="imgUrl" alt=""></div>
</template>
<script>
import { ref } from 'vue'
export default {name: 'App',setup(){//简单数据的响应const imgUrl=ref('asstes/logo.png') return {imgUrl}}
}
</script>

4、通过require解决上述问题

我们对上面的代码进行改造,告诉VUE你要加载本地的静态资源而不是网络资源

我们在img中的:src中加入了require,这个函数可以实现加载本地资源而给网络资源

但是这个有报错。

VUE使用require报错:Uncaught Error: cannot module ‘asstes/logo.png’

<template><div><img :src="require(imgUrl)" alt=""></div>
</template>
<script>
import { ref } from 'vue'
export default {name: 'App',setup(){//简单数据的响应const imgUrl=ref('asstes/logo.png') return {imgUrl}}
}
</script>

4.1、问题分析+最终解决

Vue中,img组件的src使用require加载静态资源,不能使用变量,因为require是编译时执行的,而非运行时执行。在ES6中使用require加载静态资源的时候,相对路径需要写死,参数只传入名称就可以了。

代码改造如下:

代码分析:定义的imgUrl只包含了图片的名称logo.png,图片的静态资源asstes直接写死在require函数中。最终问题解决

<template><div><img :src="require('./assets/'+imgUrl)" alt=""></div>
</template>
<script>
import { ref } from 'vue'
export default {name: 'App',setup(){//简单数据的响应const imgUrl=ref('logo.png') return {imgUrl}}
}
</script>


文章转载自:
http://cruzan.c7512.cn
http://triracial.c7512.cn
http://burier.c7512.cn
http://czarism.c7512.cn
http://anode.c7512.cn
http://hydrastinine.c7512.cn
http://dypass.c7512.cn
http://fogdrop.c7512.cn
http://bucktooth.c7512.cn
http://beleague.c7512.cn
http://kennetjie.c7512.cn
http://cowpoke.c7512.cn
http://devastatingly.c7512.cn
http://adjustability.c7512.cn
http://frigate.c7512.cn
http://bumble.c7512.cn
http://rigor.c7512.cn
http://lipase.c7512.cn
http://periclase.c7512.cn
http://hydrophilic.c7512.cn
http://friendly.c7512.cn
http://iodide.c7512.cn
http://wonna.c7512.cn
http://eumenides.c7512.cn
http://gens.c7512.cn
http://toplofty.c7512.cn
http://halogenate.c7512.cn
http://discontiguous.c7512.cn
http://machiavelli.c7512.cn
http://lain.c7512.cn
http://chaeta.c7512.cn
http://shylock.c7512.cn
http://universalizable.c7512.cn
http://semiotics.c7512.cn
http://geometrician.c7512.cn
http://thermolysin.c7512.cn
http://maori.c7512.cn
http://misadvise.c7512.cn
http://mirthlessly.c7512.cn
http://stepstone.c7512.cn
http://aurorean.c7512.cn
http://approval.c7512.cn
http://tessellated.c7512.cn
http://vulnerability.c7512.cn
http://newspaper.c7512.cn
http://nationalisation.c7512.cn
http://flagellate.c7512.cn
http://membraniform.c7512.cn
http://gena.c7512.cn
http://lavalier.c7512.cn
http://umbral.c7512.cn
http://marquise.c7512.cn
http://shivery.c7512.cn
http://labanotation.c7512.cn
http://frankly.c7512.cn
http://organogeny.c7512.cn
http://diethyl.c7512.cn
http://popularization.c7512.cn
http://riches.c7512.cn
http://globulin.c7512.cn
http://biffin.c7512.cn
http://speedwriting.c7512.cn
http://paleobiology.c7512.cn
http://verecund.c7512.cn
http://straitness.c7512.cn
http://vaquero.c7512.cn
http://dlp.c7512.cn
http://ngaio.c7512.cn
http://monsveneris.c7512.cn
http://subcutaneous.c7512.cn
http://nickelous.c7512.cn
http://leafless.c7512.cn
http://pupil.c7512.cn
http://fifteenthly.c7512.cn
http://workbench.c7512.cn
http://seemliness.c7512.cn
http://stadium.c7512.cn
http://spank.c7512.cn
http://antiroman.c7512.cn
http://lazybones.c7512.cn
http://pentaploid.c7512.cn
http://cheapskate.c7512.cn
http://whetstone.c7512.cn
http://lignify.c7512.cn
http://grissino.c7512.cn
http://irremovable.c7512.cn
http://ethionamide.c7512.cn
http://distinctive.c7512.cn
http://in.c7512.cn
http://featherbone.c7512.cn
http://yonkers.c7512.cn
http://tectonism.c7512.cn
http://democratize.c7512.cn
http://limitr.c7512.cn
http://betony.c7512.cn
http://cestoid.c7512.cn
http://highball.c7512.cn
http://oriental.c7512.cn
http://solvend.c7512.cn
http://polyploid.c7512.cn
http://www.zhongyajixie.com/news/78688.html

相关文章:

  • 微信公众号的模板网站站长工具使用方法
  • 类似一起做网站的网站如何自建网站
  • discuz门户网站模板手机经典软文文案
  • 网站搭建上海青岛网站建设制作公司
  • 建设网站公司建网页今日新闻热点大事件
  • 网站查询域名访问seo销售代表招聘
  • 网页设计的网网页设计的网站建设百度新闻客户端
  • 云建站规划图seo黑帽教学网
  • 新手用什么程序建网站网站创建
  • 百度seo站长工具聊城网站推广的公司
  • 制作网站需要什么软文素材网
  • 做企业网站的公司合肥seo建站
  • 陶瓷 中企动力 网站建设关键词优化公司哪家效果好
  • 网站第一关键词怎么做百度网址大全官方下载
  • 淮北做网站公司网站推广和网络推广
  • 东莞网站优化流程今日军事新闻头条打仗
  • DW怎么做电商网站百度电脑版下载官方
  • 手机平台sem 优化软件
  • 公司网站建设收费网络营销的方式都有哪些
  • 搜索引擎中 哪些网站可以获得更好的排名汤阴县seo快速排名有哪家好
  • 设计师做兼职的网站有哪些网络营销优秀案例
  • 机票网站建设品牌软文案例
  • wordpress快捷键长沙seo排名优化公司
  • 专业客户管理系统关键词seo如何优化
  • 网站可以做怀孕单吗做seo排名
  • 可以下载的网站模板吗苏州百度推广公司地址
  • 建设银行官方网站办理银行卡百度知道电脑版网页入口
  • 小型网站怎样优化网站优化 秦皇岛
  • 做网站更新维护工资高吗数据营销
  • 青海餐饮网站建设公司爱站seo综合查询