美文网首页
PING使用

PING使用

作者: sekaiamber | 来源:发表于2018-04-14 22:48 被阅读0次

插入sdk

<script src="http://project.isekai.me/static/bmob-min.js"></script>

调用

const Bmob = window.Bmob;
// 初始化
Bmob.initialize('edd6d24b2d260897126798902bafe166', 'f4a193a79ec3e8d5fb1a6e0059fde31f');

// GET
Bmob.Cloud.run('getVote', {}, {
  success(result) {
    console.log(result);
  },
  error(error) {
    console.log(error);
  },
});

// POST
Bmob.Cloud.run('postVote', { id: 'JnesGGGi' }, {
  success(result) {
    console.log(result);
  },
  error(error) {
    console.log(error);
  },
});

相关文章

网友评论

      本文标题:PING使用

      本文链接:https://www.haomeiwen.com/subject/ovyrkftx.html