logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue.js Interpolation inside attributes has been removed.

学习vue.js时,有个错误信息如下<img src="{{item.img}}" alt="图片未加载出来" style="width: 100%;height: 100%;">按照错误提示,改为如下即可<img :src="item.img" alt="图片未加载出来" style="width: 100%;height: 100%;">...

#vue.js
html中给button设置背景图片

button{width: 100px;height:45px;background: url("vue1/test2.png") no-repeat;border-style: none;}因为默认的button会有边框,需将其去除,然后将button背景图片设置为no-repeat就可以了...

#html
mongodb基础知识

mongodbmongodb是由c++写的,是一个基于分布式文件存储的开源数据库系统mongodb将数据存储为一个文档,数据结构由键值对组成,类似于json默认端口号为270171.创建数据库use databasename 2.查看所有数据库show dbs3.删除数据库db.dropDatebase()4.查看存在的集合show coll...

#数据库#mongodb#nosql
到底了