unicloud-database.uvue 8.6 KB
Newer Older
雪洛's avatar
雪洛 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
<template>
  <!-- #ifdef APP -->
  <scroll-view style="flex: 1">
  <!-- #endif -->
    <view>
      <page-head :title="title"></page-head>
      <view class="uni-padding-wrap uni-common-mt">
        <view class="uni-btn-v uni-common-mt">
          <button type="primary" @click="dbAdd">新增单条数据</button>
          <button type="primary" @click="dbBatchAdd">新增多条数据</button>
          <button type="primary" @click="dbUpdate">更新数据</button>
          <button type="primary" @click="dbGet">where传字符串获取数据</button>
          <button type="primary" @click="dbGetWithCommand">where传对象获取数据</button>
          <button type="primary" @click="dbRemove">删除数据</button>
          <button type="primary" @click="dbLookupInit">初始化联表查询数据</button>
          <button type="primary" @click="dbLookup">联表查询</button>
        </view>
      </view>
    </view>
  <!-- #ifdef APP -->
  </scroll-view>
  <!-- #endif -->
</template>
<script>
  export default {
    data() {
      return {
雪洛's avatar
雪洛 已提交
28 29 30 31 32 33 34 35 36
        title: 'ClientDB',
        addId: '',
        batchAddIds: [] as Array<string>,
        batchAddinserted: 0,
        updateUpdated: 0,
        getData: [] as Array<UTSJSONObject>,
        getWithCommandData: [] as Array<UTSJSONObject>,
        removeDeleted: 0,
        lookupData: [] as Array<UTSJSONObject>,
37
        isUniTest: false
雪洛's avatar
雪洛 已提交
38 39 40 41 42 43 44
      }
    },
    onLoad() {
    },
    onUnload() {
    },
    methods: {
45 46 47 48 49 50 51 52 53 54 55 56 57
      notify(content : string, title : string) {
        if (!this.isUniTest) {
          uni.showModal({
            title,
            content,
            showCancel: false
          })
        } else {
          uni.showToast({
            title: content
          })
        }
      },
雪洛's avatar
雪洛 已提交
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
      dbAdd: function () {
        uni.showLoading({
          title: '加载中...'
        })
        const db = uniCloud.databaseForJQL()
        db.collection('type')
          .add({
            num: 1,
            tag: 'default-tag',
            date: new Date(),
            point: new db.Geo.Point(116, 38)
          })
          .then<void>(res => {
            uni.hideLoading()
            console.log(res)
雪洛's avatar
雪洛 已提交
73
            this.addId = res.id
74
            this.notify(`新增成功,id: ${res.id}`, '提示')
雪洛's avatar
雪洛 已提交
75 76 77 78
          })
          .catch<void>((err : any | null) => {
            uni.hideLoading()
            const error = err as UniCloudError
79
            this.notify(error.errMsg, '错误')
雪洛's avatar
雪洛 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
          })
      },
      dbBatchAdd() {
        uni.showLoading({
          title: '加载中...'
        })
        const db = uniCloud.databaseForJQL()
        db.collection('type')
          .add([{
            num: 2,
            tag: 'default-tag',
          }, {
            num: 3,
            tag: 'default-tag',
          }])
          .then<void>((res) => {
            uni.hideLoading()
            console.log(res)
98
            console.log('JSON.stringify(res.inserted)', JSON.stringify(res.inserted))
雪洛's avatar
雪洛 已提交
99 100
            this.batchAddIds = res.ids
            this.batchAddinserted = res.inserted
101
            this.notify(`新增成功条数${res.inserted}, id列表: ${res.ids.join(',')}`, '提示')
雪洛's avatar
雪洛 已提交
102 103 104 105
          })
          .catch<void>((err : any | null) => {
            uni.hideLoading()
            const error = err as UniCloudError
106
            this.notify(error.errMsg, '错误')
雪洛's avatar
雪洛 已提交
107 108
          })
      },
雪洛's avatar
雪洛 已提交
109
      dbGet() {
雪洛's avatar
雪洛 已提交
110 111 112 113 114 115 116 117
        uni.showLoading({
          title: '加载中...'
        })
        const db = uniCloud.databaseForJQL()
        db.collection('type')
          .where(
            'tag == "default-tag"'
          )
雪洛's avatar
雪洛 已提交
118 119 120 121 122
          .field('num, tag')
          .orderBy('num desc')
          .skip(1)
          .limit(2)
          .get()
雪洛's avatar
雪洛 已提交
123 124 125
          .then<void>(res => {
            uni.hideLoading()
            console.log(res)
雪洛's avatar
雪洛 已提交
126
            this.getData = res.data
127
            this.notify(`获取成功,取到了${res.data.length}条数据`, '提示')
雪洛's avatar
雪洛 已提交
128 129 130 131
          })
          .catch<void>((err : any | null) => {
            uni.hideLoading()
            const error = err as UniCloudError
132
            this.notify(error.errMsg, '错误')
雪洛's avatar
雪洛 已提交
133 134
          })
      },
雪洛's avatar
雪洛 已提交
135
      dbGetWithCommand() {
雪洛's avatar
雪洛 已提交
136 137 138 139 140
        uni.showLoading({
          title: '加载中...'
        })
        const db = uniCloud.databaseForJQL()
        db.collection('type')
雪洛's avatar
雪洛 已提交
141 142 143
          .where({
            num: db.command.gt(1)
          })
雪洛's avatar
雪洛 已提交
144 145 146 147 148 149 150 151
          .field('num, tag')
          .orderBy('num desc')
          .skip(1)
          .limit(2)
          .get()
          .then<void>(res => {
            uni.hideLoading()
            console.log(res)
雪洛's avatar
雪洛 已提交
152
            this.getWithCommandData = res.data
153
            this.notify(`获取成功,取到了${res.data.length}条数据`, '提示')
雪洛's avatar
雪洛 已提交
154 155 156 157
          })
          .catch<void>((err : any | null) => {
            uni.hideLoading()
            const error = err as UniCloudError
158
            this.notify(error.errMsg, '错误')
雪洛's avatar
雪洛 已提交
159 160
          })
      },
雪洛's avatar
雪洛 已提交
161
      dbUpdate() {
雪洛's avatar
雪洛 已提交
162 163 164 165 166
        uni.showLoading({
          title: '加载中...'
        })
        const db = uniCloud.databaseForJQL()
        db.collection('type')
雪洛's avatar
雪洛 已提交
167 168 169 170 171
          .where(
            'tag == "default-tag"'
          )
          .update({
            num: 4
雪洛's avatar
雪洛 已提交
172 173 174 175
          })
          .then<void>(res => {
            uni.hideLoading()
            console.log(res)
雪洛's avatar
雪洛 已提交
176
            this.updateUpdated = res.updated
177
            this.notify(`更新成功,更新了${res.updated}条数据`, '提示')
雪洛's avatar
雪洛 已提交
178 179 180 181
          })
          .catch<void>((err : any | null) => {
            uni.hideLoading()
            const error = err as UniCloudError
182
            this.notify(error.errMsg, '错误')
雪洛's avatar
雪洛 已提交
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
          })
      },
      dbRemove() {
        uni.showLoading({
          title: '加载中...'
        })
        const db = uniCloud.databaseForJQL()
        db.collection('type')
          .where(
            'tag == "default-tag"'
          )
          .remove()
          .then<void>(res => {
            uni.hideLoading()
            console.log(res)
雪洛's avatar
雪洛 已提交
198
            this.removeDeleted = res.deleted
199
            this.notify(`删除成功,删掉了${res.deleted}条数据`, '提示')
雪洛's avatar
雪洛 已提交
200 201 202 203
          })
          .catch<void>((err : any | null) => {
            uni.hideLoading()
            const error = err as UniCloudError
204
            this.notify(error.errMsg, '错误')
雪洛's avatar
雪洛 已提交
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
          })
      },
      dbLookupInit() {
        uni.showLoading({
          title: '加载中...'
        })
        const db = uniCloud.databaseForJQL()
        db.collection('local')
          .where('tag == "default-tag"')
          .remove()
          .then(() : Promise<UniCloudDBRemoveResult> => {
            return db.collection('foreign')
              .where('tag == "default-tag"')
              .remove()
          })
          .then(() : Promise<UniCloudDBBatchAddResult> => {
            return db.collection('local')
              .add([{
                id: "local_1",
                name: "local_1_name",
                tag: "default-tag",
                foreign_id: "foreign_1"
              }, {
                id: "local_2",
                name: "local_2_name",
                tag: "default-tag",
                foreign_id: "foreign_2"
              }])
          })
          .then(() : Promise<UniCloudDBBatchAddResult> => {
            return db.collection('foreign')
              .add([{
                id: "foreign_1",
                name: "foreign_1_name",
                tag: "default-tag"
              }, {
                id: "foreign_2",
                name: "foreign_2_name",
                tag: "default-tag"
              }])
          })
          .then<void>((_) : void => {
            uni.hideLoading()
248
            this.notify('数据初始化成功', '提示')
雪洛's avatar
雪洛 已提交
249 250 251 252 253
          })
          .catch<void>((err : any | null) => {
            uni.hideLoading()
            console.error(err)
            const error = err as UniCloudError
254
            this.notify(error.errMsg, '错误')
雪洛's avatar
雪洛 已提交
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
          })
      },
      dbLookup() {
        uni.showLoading({
          title: '加载中...'
        })
        const db = uniCloud.databaseForJQL()
        const local = db.collection('local')
          .where('tag == "default-tag"')
          .getTemp()
        const foreign = db.collection('foreign')
          .where('tag == "default-tag"')
          .getTemp()
        db.collection(local, foreign)
          .get()
          .then<void>(res => {
            uni.hideLoading()
            console.log(res)
雪洛's avatar
雪洛 已提交
273
            this.lookupData = res.data
274
            this.notify(`联表查询成功,取到了${res.data.length}条数据`, '提示')
雪洛's avatar
雪洛 已提交
275 276 277 278
          })
          .catch<void>((err : any | null) => {
            uni.hideLoading()
            const error = err as UniCloudError
279
            this.notify(error.errMsg, '错误')
雪洛's avatar
雪洛 已提交
280 281 282 283 284 285 286 287
          })
      }
    }
  }
</script>

<style>
</style>