PING使用

插入sdk


调用

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使用)