Skip to content

Commit

Permalink
Merge pull request #106 from wangxiao/attr
Browse files Browse the repository at this point in the history
[feature] Demo 中改为 attr 来获取属性。
  • Loading branch information
wangxiao committed May 19, 2015
2 parents 26400d9 + b1d0929 commit b32176a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
9 changes: 7 additions & 2 deletions demo/demo1/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,19 @@ rt.on('open', function() {

// 创建一个聊天室
conv = rt.conv({
name: 'LeanCloud-Room',

// 人员的 id
members: [
'LeanCloud02'
],

// Conversation 的名字
name: 'LeanCloud-Room',

// 创建暂态的聊天室
// transient: true,
// 默认的数据,可以放 Conversation 名字等

// 默认的数据,可以放 Conversation 一些属性
attr: {
test: 123
}
Expand Down
8 changes: 6 additions & 2 deletions demo/demo2/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ function main() {
// 请注意,这里关闭 secure 完全是为了 Demo 兼容范围更大些
// 具体请参考实时通信文档中的「其他兼容问题」部分
// 如果真正使用在生产环境,建议不要关闭 secure,具体阅读文档
// secure 设置为 true 是开启
secure: false
});

Expand Down Expand Up @@ -120,6 +121,9 @@ function main() {

// 创建一个新 room
rt.room({
// Room 的默认名字
name: 'LeanCloud-Room',

// 默认成员的 clientId
members: [
// 当前用户
Expand All @@ -128,8 +132,8 @@ function main() {
// 创建暂态的聊天室(暂态聊天室支持无限人员聊天,但是不支持存储历史)
// transient: true,
// 默认的数据,可以放 Conversation 名字等
data: {
title: 'demo2'
attr: {
test: 'demo2'
}
}, function(obj) {

Expand Down

0 comments on commit b32176a

Please sign in to comment.