在uniapp项目中,使用unicloud-db组件,写一个搜索新闻的详细示例
时间: 2024-10-28 20:06:40 浏览: 20
利用python-oracledb库连接Oracledb数据库,使用示例
在UniApp项目中,如果你想使用UCloud DB(云数据库)组件来搜索新闻,首先你需要确保已安装了相关的插件,并配置好数据库连接。以下是一个简单的步骤和代码示例:
1. 安装依赖:
```bash
npm install @dcloudio/uni-app-plugin-ucdb
```
2. 在`main.js`或`app.vue`中初始化UCloud DB:
```javascript
import { db } from '@dcloudio/uni-app-plugin-ucdb';
Page({
onReady() {
db.connect('your_database_name', 'your_project_key', (err) => {
if (err) {
console.error('Failed to connect to UCloud DB:', err);
} else {
console.log('Connected to UCloud DB');
}
});
},
})
```
3. 创建一个数据模型(NewsModel.vue)用于新闻:
```vue
<template>
<view>
<!-- 搜索框 -->
<input placeholder="搜索新闻" v-model="searchKeyword" />
<!-- 列表展示 -->
<list :data="filteredNews" />
</view>
</template>
<script>
export default {
data() {
return {
searchKeyword: '',
newsList: [],
};
},
computed: {
filteredNews() {
return this.newsList.filter((news) =>
news.title.includes(this.searchKeyword) ||
news.content.includes(this.searchKeyword)
);
},
},
methods: {
async fetchNews() {
const response = await db.collection('news').where({
title: { like: `%${this.searchKeyword}%` },
content: { like: `%${this.searchKeyword}%` },
}).get();
this.newsList = response.data;
},
},
onReady() {
// 初始化新闻列表
this.fetchNews();
},
};
</script>
```
4. 使用`fetchNews`方法获取并显示新闻,当输入框内容改变时动态搜索。
这个例子中,我们假设已经有一个名为`news`的集合,包含标题(title)和内容(content)字段。当你在搜索框输入关键词,会实时过滤出匹配的新闻。
阅读全文