数据库里的时间一般是时间戳,不能直接渲染。虽然可以在load事件中对时间格式化,但更简单的方式是使用<uni-dateformat>组件,无需写js处理。 error事件 error事件在查询报错时触发,比如联网失败。 ... <unicloud-db @error="handleError" /> ... handleError(e) { // {message} } ...
<template><view><unicloud-dbcollection="uni-id-users":where="`username=='${tempstr}'`"></unicloud-db></view></template>exportdefault{data(){return{tempstr:'123'}}} 方式2. 不在属性中写,而在js中拼接字符串 <template><view><unicloud-dbref="udb"collection="uni-id-users":where="sWhe...