美文网首页
leancloud 数据更新

leancloud 数据更新

作者: jh2k15 | 来源:发表于2018-05-16 14:47 被阅读0次
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <title>Document</title>
</head>

<body>
  <script src="https://cdn1.lncld.net/static/js/av-mini-0.6.4.js"></script>
  <script>
  AV.initialize('id-gzGzoHsz',
    'key'); //id,key
  var helloworld = AV.Object.extend("HelloWorld") //定义
  var query = new AV.Query(helloworld) // 定义数据查询
  query.get('5afbcf5e7f6fd3188a43179d', { //objextid
    success: function(post) {
      post.set('baas','newleancloud');
      post.save();
      var data = post.get('baas');
      document.write('baas服务名:' + data)
    },
    error: function(error) {
      document.write('读取错误');
    }
  })
  </script>
</body>

</html>

相关文章

网友评论

      本文标题:leancloud 数据更新

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