PHP前端开发

uniapp设置的背景图无法显示怎么办

百变鹏仔 2个月前 (11-20) #uniapp
文章标签 背景图
uniapp设置的背景图无法显示的解决办法:1、检查图片大小,然后将其转换为base64格式使用或者将其放到服务器上,从网络地址引用;2、将本地背景图片的引用路径修改为以“~@”符号开头的绝对路径。

本教程操作环境:windows7系统、uni-app2.5.1版本,Dell G3电脑。

推荐(免费):uni-app教程

uni-app在手机上背景图片不显示?

uni-app解决无法加载本地图片的方法【动态加载背景图片*唯一的解决办法】

特别注意:千万别忘记了【`url(${indexBackgroundImage})`】

<template><view><!--你的内容--></view></template> <script>import indexBackgroundImage from "@/static/img/account_index.jpg"export default {	data() {		return {			indexBackgroundImage:indexBackgroundImage		}	},	methods: {			}}</script>  <style></style>