美文网首页
leancloud数据储存

leancloud数据储存

作者: jh2k15 | 来源:发表于2018-05-16 14:32 被阅读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('app-gzGzoHsz',
      'app key');//id,key
      var helloworld = AV.Object.new("HelloWorld")//创建表
      helloworld.save({ 'name': 'jh' }, {   //插入数据
        success: function(obj) {         //回调函数
          document.write('数据已保存');
        }
      });
      </script>
    </body>
    
    </html>
    

    相关文章

      网友评论

          本文标题:leancloud数据储存

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