新手小白用微信小程序和云数据库做一个论坛【发帖页】
放个效果图
发帖页就很简单了,只需要获取输入的内容,存入tiezi集合就可以了。我使用的是表单提交(即form bindsubmit=“formSubmit”)来提交数据。
data的内容为:
data: {
img_arr:[],
img:'',
//标题
title: '',
//内容
detail:'',
//作者
writer:'',
//时间
time:'',
fruit: [
{
id: 1,name: '学习心得',},
{
id: 2,name: '日常交流'},
{
id: 3,name: '题目悬赏'},
{
id: 4,name: '竞赛组队',}
],
//分类
current:'日常交流',
id:0
},
handleFruitChange(e) {
this.setData({
current: e.detail.value
});
},
下面是完整的wxml页面。
<text >\n</text>
<form bindsubmit="formSubmit" id='1' bindreset="formReset">
<i-input name="title" type="textarea" title="主题" autofocus placeholder="想个好标题吧!" />
<i-input name="content" type="textarea" title="内容" placeholder