LeanCloud SDK 封装 LeanMotion

码农软件 · 软件分类 · 网站API · 2019-03-09 16:11:43

软件介绍

LeanCloud ,一个为移动应用提供数据统计、数据存储、消息推送、发送短信、发送邮件等云服务商。

LeanMotion 是一个RubyMotion的Gem,可以更加方便地使用LeanCloud SDK。
用更Ruby的写法来操作LeanCloud的数据,类Rails的ActiveRecord,增删查改。

安装说明

1、安装gem

gem install lean_motion

2、创建项目

lean_motion create app-name

3、修改 app_delegate.rb
设置LeanCloud的App ID和App Key

app_id   = "your_app_id"
app_key  = "your_app_key"

4、运行

rake

使用说明

1、在LeanCloud后台创建一个Class,比如Product,并添加以下字段

name: String
description: String
url: String

2、添加model文件 product.rb,建议放在app/models/目录下

class Product
  include LM::Model

  fields :name, :description, :url
end

3、操作数据

新建产品

product = Product.new
product.name        = 'iPhone 6'
product.description = '目前最好的智能手机'
product.url         = 'http://www.apple.com'
product.save

产品数量

Product.count

查询产品

Product.where(:name=>'iPhone 6').find

获得第一条记录

Product.first

排序

Product.sort(:createdAt=>:desc).find

分页(默认是20条记录/页)

Product.page(current_page, pagesize)

4、帐号相关 注册帐号

user = User.new
user.username = '用户名,必须唯一'
user.password = '必填'
user.signUp

登录

User.login('用户名', '密码') do |user, error|
  if !error
    p '登录成功'
  end
end

退出

User.logout

判断是否已登录

User.login?
end

判断用户是否已存在

User.exist? username

本文地址:https://codercto.com/soft/d/978.html

结网

结网

王坚 / 人民邮电出版社 / 2010-4 / 55.00元

本书作者一直从事互联网产品的研究和实战,经验丰富,同时作为导师,指导了大量优秀的产品经理,本书的内容也是作者8年来培养产品经理新兵的经验集萃。如果你缺乏培养产品经理的教材,本书正好总结了产品经理知识体系,无疑是你很好的选择。 本书覆盖了相当全面的互联网知识,对于想要了解互联网行业或想要借助互联网进行营销的人来说,都是很好的入门读物。 本书并不是一本完善的互联网创业指南,而是写给胸怀互联......一起来看看 《结网》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具