当<unicloud-db> 组件的 manual 属性设为 true 时,不会在页面初始化时联网查询数据,此时需要通过本方法在需要的时候手动加载数据。 this.$refs.udb.loadData()//udb为unicloud-db组件的ref属性值 一般onLoad因时机太早取不到this.$refs.udb,在onReady里可以取到。 <template><view><unicloud-db ref="udb"...
loadData 当<unicloud-db> 组件的 manual 属性设为 true 时,不会在页面初始化时联网查询数据,此时需要通过本方法在需要的时候手动加载数据。 this.$refs.udb.loadData() //udb为unicloud-db组件的ref属性值 一般onLoad因时机太早取不到this.$refs.udb,在onReady里可以取到。
改造后: 把组件删掉,然后把骨架屏这里改成if,写一个状态,在下面写方法来控制骨架屏的状态 定义一个loadState变量,值默认为true, 网络请求之前是在data里定义变量collections写的,现在写到自定义方法中 然后新定义一个detailObj接收值 把所有的DOM结构中的data全部改成detailObj 因为这里新定义了值为detailObj,所以还...
<unicloud-db ref="udb" v-slot:default="{data,pagination, loading, error, options}" :options="options" collection="friendCircle" orderby="createTime desc" field="userId,userName" :getone="false" :action="action" :where="where" @load="onqueryload" @error="onqueryerror"> <view v-if=...
getTsLoadOptions () { const { isInHBuilderX // 在 HBuilderX 的插件中 } = require('@dcloudio/uni-cli-shared') const userTsConfigJson = path.resolve(process.env.UNI_INPUT_DIR, 'tsconfig.json') const defaultTsConfigJson = path.resolve(process.env.UNI_CLI_CONTEXT, 'tsconfig.json') const...
manualBoolean已过时,使用loadtime替代是否手动加载数据,默认为 false,页面onready时自动联网加载数据。如果设为 true,则需要自行指定时机通过方法this.$refs.udb.loadData()来触发联网,其中的udb指组件的ref值。一般onLoad因时机太早取不到this.$refs.udb,在onReady里可以取到 ...
Load diff Large diffs are not rendered by default. 2 changes: 1 addition & 1 deletion2uni_modules/uni-easyinput/package.json Original file line numberDiff line numberDiff line change @@ -1,7 +1,7 @@ { "id":"uni-easyinput",
outDir = process.env.UNI_OUTPUT_DIR 11 changes: 7 additions & 4 deletions 11 pnpm-lock.yaml Load diff Some generated files are not rendered by default. Learn more about how customized files appear on GitHub. 0 comments on commit 16fe3fb Please sign in to comment. ...
loadPage } from './load-sub-package' import { initEntryPage } from './config' const pages = [] export function getCurrentPages (returnAll) { @@ -83,6 +87,9 @@ export function registerPage ({ webview, eventChannel }) { // fast 模式,nvue 首页时,初始化下 entry page webview && ...