Blogger Information
Blog 17
fans 0
comment 0
visits 23112
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Bmob做后台关联数据插入
飞鸿先森的博客
Original
1145 people have browsed it

使用Bmob开发的时候,经常会因为文档的不全忙活半天,插入关联数据时,JavaScript插入过,到微信小程序的时候找不到文档了,还好记得用过,因为很多语言的方法都类似,以至于文档有的全有的不全。

数据库表如下图:

comment.png

其中comment表是一张评论表,关联了用户表_User和音乐表music,当用户添加评论时,需要关联到自己的用户id和评论的音乐id,刚开始我是用一般数据格式的代码添加:

_comment.set("musicId", musicId);
_comment.set("commentor", commentor);
_comment.set("content", that.data.comment);

但是报错了,好像是111错误,意思是musicId的数据类型为Pointer,但是我添加的是String类型,导致添加失败。

解决方案:

var commentor = Bmob.Object.createWithoutData("_User", "a5461213");//关联字段
var musicId = Bmob.Object.createWithoutData("music", "asd6565a");//关联字段
_comment.set("musicId", musicId);
_comment.set("commentor", commentor);
_comment.set("content", "这是评论数据");

改成这样以后成功插入数据。

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post