我也遇到相同的问题😩,我是一直报这个错,不管多少次
扫码打开一个skyline页面第一次打开报错,重新扫码又正常打开了 求解答?如果不配置skyline模式的话 第一次打开就能正常打开不报错。所以怀疑是skyline那里出问题了 报错内容如下: MiniProgramError undefined is not an object (evaluating 'this.waitingForHoverReset.then') TypeError: undefined is not an object (evaluating 'this.waitingForHoverReset.then') at _hoverClassChange (WARenderContext.js:1:225715) at hoverClass (WARenderContext.js:1:1133868) at callAttributeFilter (WAServiceMainContext.js:1:255480) at (WAServiceMainContext.js:1:274630) at (appservice.app.js:7146:4527) at o (WAServiceMainContext.js:1:281837) at createNativeNodeWithInit (WAServiceMainContext.js:1:259542) at createCommonElement (WAServiceMainContext.js:1:281981) at (WAServiceMainContext.js:1:276231) at b (appservice.app.js:7146:4379) at j (appservice.app.js:7146:2140) at handleChildrenCreation (WAServiceMainContext.js:1:275887) at handleChildrenCreationAndInsert (WAServiceMainContext.js:1:277968) at (WAServiceMainContext.js:1:276535) at c (appservice.app.js:7146:2184) at (WAServiceMainContext.js:1:279462) at handleChildrenCreation (WAServiceMainContext.js:1:275887) at handleChildrenCreationAndInsert (WAServiceMainContext.js:1:277968) at (WAServiceMainContext.js:1:279441) at diff (WAServiceMainContext.js:1:271714) at (WAServiceMainContext.js:1:279242) at b (appservice.app.js:7146:2208) at c (share/index.appservice.js:1:412) at handleChildrenUpdate (WAServiceMainContext.js:1:278113) at (WAServiceMainContext.js:1:278906) at a (share/index.appservice.js:1:464) at handleChildrenUpdate (WAServiceMainContext.js:1:278113) at update (WAServiceMainContext.js:1:275448) at updateValues (WAServiceMainContext.js:1:289065) at (WAServiceMainContext.js:1:297159) at applyDataUpdates (WAServiceMainContext.js:1:211619) at setData (WAServiceMainContext.js:1:304410) at (WASubContext.js:1:158100) at P (WASubContext.js:1:152880) at setData (WASubContext.js:1:158079) at (appservice.app.js:7214:73709) at <setTimeout callback function> at (WASubContext.js:1:110313) at (WASubContext.js:1:142858) at p (WAServiceMainContext.js:1:151705) at (WAServiceMainContext.js:1:139654) _onNativeTimer@ global code@
11-08解决了吗兄弟,我也遇到这个问题了
页面只有一个page-container,每次编译都报[渲染层错误],如何解决?[渲染层错误] [Component] <page-container>: Only one instance can exist.(env: Windows,mp,1.06.2405020; lib: 3.5.1) 在微信开发者工具中,页面就一个page-container组件,每次保存热重载就报上述错误,该组件也无法显示,手动刷新页面就恢复正常,可以显示了 <page-container show="{{poppageshow}}" bind:clickoverlay="clickoverlay"> <view class="poppage-gloabal"> <view class="poppage-title"> <view>{{poppage_title}}</view> </view> <view class="poppage-row"> <view class="data-rowtt">客户名称</view> <input placeholder="{{pop_clientname}}" bindinput="popdatabind" data-name="pop_newclientname" value="{{pop_newclientname}}"></input> </view> <view class="poppage-row"> <view class="data-rowtt">热源关系</view> <input placeholder="{{pop_team}}" bindinput="popdatabind" data-name="pop_newteam" value="{{pop_newteam}}"></input> </view> <view class="poppage-row"> <view class="data-rowtt">客户地址</view> <input placeholder="{{pop_dress}}" bindinput="popdatabind" data-name="pop_newdress" value="{{pop_newdress}}"></input> </view> <view class="poppage-row"> <view class="data-rowtt">创建时间</view> <input class="popinput" placeholder="{{pop_creattime}}" disabled="true" value="{{pop_newcreattime}}"></input> <picker mode="date" bindchange="changedate" data-type="creat">选择时间</picker> </view> <view class="poppage-row"> <view class="data-rowtt">投用时间</view> <input class="popinput" placeholder="{{pop_usetime}}" disabled="true" value="{{pop_newusetime}}"></input> <picker mode="date" bindchange="changedate" data-type="use">选择时间</picker> </view> <view class="poppage-row"> <view class="data-rowtt">备注</view> <textarea placeholder="{{pop_remark}}" bindinput="popdatabind" data-name="pop_newremark" value="{{pop_newremark}}"></textarea> </view> <view class="operation-view"> <view class="operation-button" bind:tap="savedata" data-id="{{item.id}}">保存</view> <view class="operation-button" bind:tap="closepoppage">关闭</view> </view> <view class="poppage-row"> </view> </view> </page-container>
10-25