UniApp實現美食推薦與餐廳預訂的實現指南
引言:
在現代社會,人們追求美食已經成為一種生活方式。隨著智慧型手機的普及和行動互聯網的發展,越來越多的人開始使用手機APP來尋找美食推薦和進行餐廳預訂。本文將介紹如何使用UniApp框架來實現這樣一個功能豐富的美食推薦與餐廳預訂的應用。
一、準備工作
二、頁面設計與開發
範例程式碼:
<template> <view> <uni-list> <uni-list-item v-for="item in list"> <image :src="item.image"></image> <text>{{ item.name }}</text> <text>{{ item.rating }}</text> </uni-list-item> </uni-list> </view> </template> <script> export default { data() { return { list: [] // 美食推荐列表数据 } }, mounted() { // 获取美食推荐列表数据 this.getList() }, methods: { getList() { // 调用后端API获取美食推荐列表数据 // 使用uni.request()函数发送HTTP请求 uni.request({ url: 'http://localhost:3000/api/recommendation', method: 'GET', success: (res) => { this.list = res.data }, fail: (err) => { console.log(err) } }) } } } </script>
範例程式碼:
<template> <view> <uni-grid> <uni-grid-item v-for="item in restaurant.images" :key="item"> <image :src="item"></image> </uni-grid-item> </uni-grid> <text>{{ restaurant.name }}</text> <text>{{ restaurant.address }}</text> <text>{{ restaurant.telephone }}</text> <uni-list> <uni-list-item v-for="review in restaurant.reviews"> <text>{{ review.content }}</text> <text>{{ review.rating }}</text> </uni-list-item> </uni-list> </view> </template> <script> export default { data() { return { restaurant: {} // 餐厅详情数据 } }, mounted() { // 获取餐厅详情数据 this.getRestaurant() }, methods: { getRestaurant() { // 调用后端API获取餐厅详情数据 // 使用uni.request()函数发送HTTP请求 uni.request({ url: 'http://localhost:3000/api/restaurant/1', // 1表示餐厅的ID method: 'GET', success: (res) => { this.restaurant = res.data }, fail: (err) => { console.log(err) } }) } } } </script>
三、後端API設計與開發
範例程式碼:
const express = require('express') const app = express() app.get('/api/recommendation', (req, res) => { // 查询数据库获取美食推荐列表数据 // 使用res.json()函数返回数据 const list = [ { id: 1, name: '美食A', image: 'xxx', rating: 4.5 }, { id: 2, name: '美食B', image: 'xxx', rating: 4.8 }, { id: 3, name: '美食C', image: 'xxx', rating: 4.2 } ] res.json(list) }) app.listen(3000, () => { console.log('Server is running on port 3000') })
範例程式碼:
app.get('/api/restaurant/:id', (req, res) => { const id = req.params.id // 根据餐厅ID查询数据库获取餐厅详情数据 // 使用res.json()函数返回数据 const restaurant = { id: 1, name: '餐厅A', images: ['xxx', 'xxx', 'xxx'], address: 'xxx', telephone: 'xxx', reviews: [ { id: 1, content: '好吃啊', rating: 4.5 }, { id: 2, content: '太棒了', rating: 4.8 }, { id: 3, content: '一般般', rating: 4.2 } ] } res.json(restaurant) })
四、實現餐廳預訂功能
範例程式碼:
<button @click="book">预订餐厅</button>
範例程式碼:
methods: { book() { // 跳转到预订页面,并传递餐厅ID uni.navigateTo({ url: '/pages/booking?id=' + this.restaurant.id }) } }
範例程式碼:
<template> <view> <uni-form> <uni-form-item label="姓名"> <uni-input v-model="name"></uni-input> </uni-form-item> <uni-form-item label="电话"> <uni-input v-model="phone"></uni-input> </uni-form-item> </uni-form> <uni-button @click="submit">提交</uni-button> </view> </template> <script> export default { data() { return { name: '', phone: '', restaurantId: '' } }, onLoad(options) { this.restaurantId = options.id }, methods: { submit() { // 调用后端API进行预订操作 // 使用uni.request()函数发送HTTP请求 uni.request({ url: 'http://localhost:3000/api/booking', method: 'POST', data: { name: this.name, phone: this.phone, restaurantId: this.restaurantId }, success: (res) => { if (res.data.success) { uni.showToast({ title: '预订成功' }) } else { uni.showToast({ title: '预订失败' }) } }, fail: (err) => { console.log(err) } }) } } } </script>
範例程式碼:
app.post('/api/booking', (req, res) => { const { name, phone, restaurantId } = req.body // 处理预订操作,例如保存预订信息到数据库 // 使用res.json()函数返回预订结果 const success = true res.json({ success }) })
五、總結
本文介紹如何使用UniApp框架來實現一個功能豐富的美食推薦與餐廳預訂的應用程式。透過頁面設計與開發、後端API設計與開發等步驟,我們可以實現一個用戶友好的美食推薦與餐廳預訂功能,並提供便捷的預訂流程讓用戶享受美食的同時也能獲得更好的就餐體驗。透過這個範例,相信讀者已經對使用UniApp開發類似應用程式有了一定的了解。希望讀者能夠根據本文的指南進一步探索行動應用開發的更多可能性。
以上是UniApp實現美食推薦與餐廳預約的實現指南的詳細內容。更多資訊請關注PHP中文網其他相關文章!