uni-app开发常见异常和解决办法
⽂章⽬录
前⾔
uni-app 是⼀个基于 Vue.js 开发所有前端应⽤的框架,开发者编写⼀套代码,可发布到iOS、Android、Web(响应式)、以及各种⼩程序(微信/⽀付宝/百度/头条/QQ/钉钉/淘宝)、快应⽤等多个平台。
澳洲小龙虾在开发过程中可能会遇到⼀些异常,这些异常及其解决办法总结如下。
1.调⽤微信开发者⼯具报错IDE rvice port disabled
在HBuilderX下开发好项⽬后,要使⽤⼩程序模拟器进⾏运⾏调试时,控制台报错如下:
21:48:18.851 [微信⼩程序开发者⼯具] IDE rvice port disabled. To u CLI Call, plea enter y to confirm enabling CLI capability, or manually open IDE -> Settings -> Security Settings, and t Service Port On.
21:48:18.859 [微信⼩程序开发者⼯具]For more details e: developers./miniprogram/en/dev/devtools/cli.html
21:48:18.859 [微信⼩程序开发者⼯具]⼯具的服务端⼝已关闭。要使⽤命令⾏调⽤⼯具,请在下⽅输⼊ y 以确认开启,或⼿动打开⼯具-> 设置-> 安全设置,将服务端⼝开启。
21:48:18.866 [微信⼩程序开发者⼯具]详细信息: developers./miniprogram/dev/devtools/cli.html
此时是因为微信开发者⼯具未打开服务端⼝,根据提⽰,打开微信开发者⼯具 -> 设置 -> 安全设置 -> 开启服务端⼝即可,如下:
方程的解的定义
2.@import导⼊外部样式失效
有时候在进⾏uni-app开发时,需要在App.vue或者某个页⾯的style块中导⼊外部已写好的样式,但是导⼊后可能会发现样式⽆效,如下:
/*每个页⾯公共css */
.red{
color: #ff0000;
}
/* 引⼊⾃定义图标库 */
@import './static/font/iconfont.css';
</style>
这是因为通过@import导⼊外部样式需要将其放于style块的最前⾯,⽽不能放到中间或后⾯位置,这样会失效,同时应该在导⼊语句后加上分号;,这样才会⽣效。
3.v-for列表渲染指定:key属性报错Duplicate keys detected
uni-app提倡在进⾏列表渲染,即v-for循环遍历列表时添加:key属性来指定列表中项⽬的唯⼀的标识符,以确保使组件保持⾃⾝的状态、并提⾼列表渲染效率。
但是有时候会出现警告,例如:
<template>
<view>
<!-- 话题信息 -->
<topic-info :info="info"></topic-info>
<divider></divider>
<!-- 精华帖 -->
<block v-for="(item, index) in hotList":key="index">
<view class="p-2 flex align-center border-bottom"hover-class="bg-light">
黄鳝粥>种猪
<text class="iconfont icon-zhiding text-main"></text>
<text class="font text-dark text-ellipsis">{{item.title}}</text>
</view>
</block>
<divider></divider>
<!-- 标签栏 -->
<view class="flex align-center py-2">
<view class="flex-1 font-lg font-weight-bold text-main flex align-center justify-center">默认</view>
<view class="flex-1 font-md flex align-center justify-center">最新</view>
</view>老年人便秘
<!-- 列表 -->
<block v-for="(item, index) in list1":key="index">
<common-list :item="item":index="index"></common-list>
</block>
</view>
</template>
警告信息如下:
16:42:29.421 [Vue warn]: Duplicate keys detected:'0_0'. This may cau an update error.
16:42:29.463 (found at pages/topic-detail/topic-detail.vue:1)
16:42:29.484 [Vue warn]: Duplicate keys detected:'1_0'. This may cau an update error.
16:42:29.524 (found at pages/topic-detail/topic-detail.vue:1)
这是因为⼀个template中有两个或多个v-for,它们的:key值都为index、出现冲突,此时只需给不同循环的:key值拼接不同的前缀或者后缀即可。
说明文作文600字修改如下即可:
<view>
<!-- 话题信息 -->
<topic-info :info="info"></topic-info>
<divider></divider>
<!-- 精华帖 -->
<block v-for="(item, index) in hotList":key="'hot'+index">
<view class="p-2 flex align-center border-bottom"hover-class="bg-light">
<text class="iconfont icon-zhiding text-main"></text>
最强大的国家<text class="font text-dark text-ellipsis">{{item.title}}</text>
</view>
</block>
<divider></divider>
<!-- 标签栏 -->
七月份什么星座<view class="flex align-center py-2">
<view class="flex-1 font-lg font-weight-bold text-main flex align-center justify-center">默认</view> <view class="flex-1 font-md flex align-center justify-center">最新</view>
</view>
<!-- 列表 -->
<block v-for="(item, index) in list1":key="index">
<common-list :item="item":index="index"></common-list>
</block>
</view>
</template>
此时便不会出现警告信息。