uni-app 在使用 onLoad() 直接发送请求时,会发生产生渲染异步的问题,即页面已经渲染好了,但是请求过来的数据还没完成赋值。问题代码如下:
会产生异步问题的 index.vue 代码:
<template>
<view class="content">
<view v-for="(item, index) in userList">
<text>{{item.name}} - {{item.age}} </text>
</view>
</view>
</templa
2024-11-10