前端
注意:在首页点击“写文章”按钮,要判定登录状态,如果没登录,跳转到登录页面;如果已经登录,跳转到写文章页面
<template>
<view class="container">
<!-- 文章标题输入框,和title变量绑定 -->
<input type="text" v-model="title" placeholder="请输入标题" />
<!-- 选择图片的按钮,点击触发chooseImg方法 -->
<button class="add-btn" @tap="chooseImg">+图片</button>
<!-- 文章内容输入的多行文本域,绑定content变量 -->
<textarea placeholder="输入内容" v-model="content" class="content" />
<text>预览</text>
<!-- 使用graceUI的富文本解析功能,来预览文章内容 -->
<view class="grace-text">、
<rich-text :nodes="content" bindtap="tap"></rich-text>
</view>
<button class="green-btn" @tap="postArticle">发布文章</button>
</view>
</template>
js部分
data区
return {
title: '',
content: '',
userId: uni.getStorageSync('login_key').userId,
imgs: []
};
methods区
选择图片上传方法
chooseImg: function() {
var _this = this;
uni.chooseImage({
count: 1,
sizeType: ['original', 'compressed'],
sourceType: ['album'],
success: function(res) {
console.log(JSON.stringify(res.tempFilePaths));
uni.uploadFile({
url: _this.apiServer + '/upload',
filePath: res.tempFilePaths[0],
name: 'file',
success: uploadFileRes => {
//图片上传成功,回显图片地址
console.log(uploadFileRes.data);
//将图片地址加入imgs数组
_this.imgs.push(uploadFileRes.data);
//将图片地址拼接HTML标签,加入文章内容
_this.content += '<img src="' + uploadFileRes.data + '" width = "100%"/>';
}
});
}
});
}
postArticle: function() {
var _this = this;
uni.request({
url: this.apiServer + '/article/add',
method: 'POST',
header: { 'content-type': 'application/x-www-form-urlencoded' },
data: {
uId: this.userId,
title: this.title,
content: '<div>' + this.content + '</div>'
},
success: res => {
if (res.data.code === 0) {
//获得发布文章成功返回的文章id
var aId = res.data.data;
console.log(aId);
uni.showToast({
title: '发布成功'
});
//将文章id和文章对应的图片地址数组传到后台,存入数据库
uni.request({
url: this.apiServer + '/img/add',
method: 'POST',
header: { 'content-type': 'application/x-www-form-urlencoded' },
data: {
aId: aId,
imgs: JSON.stringify(_this.imgs) //序列化imgs数组
},
success: res => {
if (res.data.code === 0) {
console.log('文章图片地址已写入数据库');
}
}
});
uni.switchTab({
url: '../index/index'
});
}
}
});
}