pishNewBlog method
发布一篇新博客
Implementation
Future<void> pishNewBlog(String title, String content, List<String> tags, String categoryId, {String? alias}) async {
await util.post('/api/blog/push-new',data: {'title': title, 'content': content, 'tags': tags, 'categoryId': categoryId,'alias':alias??''});
}