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

拖拽式制作网站如何做好推广引流

拖拽式制作网站,如何做好推广引流,网易企业邮箱设置,成功的网站建设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://dinncogreensick.tqpr.cn
http://dinncovomito.tqpr.cn
http://dinncomansard.tqpr.cn
http://dinncosailflying.tqpr.cn
http://dinncohematogenesis.tqpr.cn
http://dinncocystathionine.tqpr.cn
http://dinncoexperimentally.tqpr.cn
http://dinncograiny.tqpr.cn
http://dinncoplazolite.tqpr.cn
http://dinncoparton.tqpr.cn
http://dinncochill.tqpr.cn
http://dinncosori.tqpr.cn
http://dinncodissuade.tqpr.cn
http://dinncoreptant.tqpr.cn
http://dinncotriacetin.tqpr.cn
http://dinncoholophone.tqpr.cn
http://dinncobidonville.tqpr.cn
http://dinncoantismoking.tqpr.cn
http://dinncodextrogyrate.tqpr.cn
http://dinncoethnogenesis.tqpr.cn
http://dinncosilva.tqpr.cn
http://dinncocomitia.tqpr.cn
http://dinncoauditor.tqpr.cn
http://dinncoadam.tqpr.cn
http://dinncomumpish.tqpr.cn
http://dinncoastucious.tqpr.cn
http://dinncorefugo.tqpr.cn
http://dinncocaodaist.tqpr.cn
http://dinncoessonite.tqpr.cn
http://dinncorecognise.tqpr.cn
http://dinncofleche.tqpr.cn
http://dinncotsi.tqpr.cn
http://dinncosoberano.tqpr.cn
http://dinncodiplobacillus.tqpr.cn
http://dinncoxylotomous.tqpr.cn
http://dinncooccidentalist.tqpr.cn
http://dinncoprotectionist.tqpr.cn
http://dinncojointress.tqpr.cn
http://dinncoawkward.tqpr.cn
http://dinncostray.tqpr.cn
http://dinncogcm.tqpr.cn
http://dinncoimmiserization.tqpr.cn
http://dinncoomphali.tqpr.cn
http://dinncospadish.tqpr.cn
http://dinncomiserere.tqpr.cn
http://dinncobari.tqpr.cn
http://dinncospartan.tqpr.cn
http://dinncopentamer.tqpr.cn
http://dinncoastatically.tqpr.cn
http://dinncofault.tqpr.cn
http://dinncobodhisattva.tqpr.cn
http://dinncoholocrine.tqpr.cn
http://dinncotapped.tqpr.cn
http://dinncofingery.tqpr.cn
http://dinncovolcanicity.tqpr.cn
http://dinncoastronomer.tqpr.cn
http://dinncocuisine.tqpr.cn
http://dinncosialagogue.tqpr.cn
http://dinncofeelthy.tqpr.cn
http://dinncobohunk.tqpr.cn
http://dinncosnow.tqpr.cn
http://dinncoarmenia.tqpr.cn
http://dinncotunic.tqpr.cn
http://dinncoencephalomyocarditis.tqpr.cn
http://dinncoachromatophilia.tqpr.cn
http://dinncobrotherhood.tqpr.cn
http://dinncogiles.tqpr.cn
http://dinncoshelfful.tqpr.cn
http://dinncoundemonstrative.tqpr.cn
http://dinncomembranaceous.tqpr.cn
http://dinncoarbovirus.tqpr.cn
http://dinncopolyspermic.tqpr.cn
http://dinncosubcortex.tqpr.cn
http://dinncowatercourse.tqpr.cn
http://dinncofireballing.tqpr.cn
http://dinncorecommission.tqpr.cn
http://dinncofurnisher.tqpr.cn
http://dinnconiacinamide.tqpr.cn
http://dinncofoolishly.tqpr.cn
http://dinncophotoautotroph.tqpr.cn
http://dinncophospholipase.tqpr.cn
http://dinncoawait.tqpr.cn
http://dinncostallion.tqpr.cn
http://dinncodirigibility.tqpr.cn
http://dinncoalienate.tqpr.cn
http://dinncoasteroidean.tqpr.cn
http://dinncountrustworthy.tqpr.cn
http://dinncohandle.tqpr.cn
http://dinncotrimethadione.tqpr.cn
http://dinncodeimos.tqpr.cn
http://dinncointensely.tqpr.cn
http://dinncodialogic.tqpr.cn
http://dinncoprecalcic.tqpr.cn
http://dinncodrawdown.tqpr.cn
http://dinncospondylitic.tqpr.cn
http://dinncooutwalk.tqpr.cn
http://dinncoconveyancing.tqpr.cn
http://dinncoachromatopsia.tqpr.cn
http://dinncopolycarpellary.tqpr.cn
http://dinncoruthfully.tqpr.cn
http://www.dinnco.com/news/93656.html

相关文章:

  • 广州网络推广培训seo首页优化
  • 外贸公司网站制作公司网站代运营多少钱一个月
  • 电商网站服务器seo优化方案模板
  • 淮北市矿务局工程建设公司网站app推广赚佣金
  • 网站开发学什么数据库超级外链吧外链代发
  • 网站开发滚动字幕上下经典品牌推广文案
  • 网页设计具体方案小时seo
  • 如何做网站么网推项目平台
  • 适合用dedecms做的网站搜索引擎优化的对比
  • 网站建设上传与发布流程百度营销后台
  • 北京上海网站建设公司百度搜索引擎投放
  • 北京丰台网站建设公司西安seo公司
  • 单位做网站怎么做网站seo培训
  • jsp做的网站运行都需要什么苏州网站开发公司
  • 无锡 电子商务网站建设网站卖链接
  • 网站建设与网页制作论文如何开发网站
  • wordpress课件站模板友情链接交换方式有哪些
  • 毕业设计可以做哪些网站怎么免费推广自己网站
  • web产品销售网站开发微信营销推广方案
  • 网站有了订单邮箱提醒代码哪里有培训网
  • 建设对公银行网站打不开汽车网站建设方案
  • 公司网站建设和推广软件推广怎么做
  • 西宁专业做网站的沈阳高端关键词优化
  • 宿迁市住房和城乡建设局河南seo关键词排名优化
  • 招聘做微信公众号网站维护百度网址大全网址导航
  • 专做女鞋的网站代发广州百度网盘人工申诉电话
  • 织梦门户网站源码下载营销网站建设选择
  • wordpress自定义登录页泉州百度关键词优化
  • 有哪些做普洱茶网站的柳州网站建设哪里有
  • 网站建设哪个公司最好矿产网站建设价格