/*INSBEGIN:WSNOTIFY*/ function() { return reqlib('msgbroker'); }, function(msgbroker) { var domain = "lxtx.com"; var uid = inputs.id; var msg = { "command": "MESSAGE", "headers": { "random": Math.random(), "subscription": "sub-0" }, "body": "" }; msg.headers._runCommand = JSON.stringify([{ "command": "vmArrFuc", "params": [ "push", "chat2", { "chat7messagecon": inputs.chat7messagecon, "pd": "pd", "chat7sendtim": tmp_data.chat1.chat7sendtim, "chat7messageper": tmp_data.chat1.chat7messageper, "chat7messagerec": tmp_data.chat1.chat7messagerec, "yonghu1": tmp_data.yonghu2.username, "yonghu2": tmp_data.yonghu1.username, "chat7recordthep": tmp_data.chat1.chat7messagerec, "_id": tmp_data.chat1._id } ] },{ "command": "updatelv", "params": [{ "gundong": tmp_data.gundong }] }]); return msgbroker.notifyuser(domain, uid, msg); }, //@wweditorinfo:{"id":"a189fffd8eceaebf0c6c516cba3d15c0","editor":{"step1":{"isGroup":false},"stepUser":{"domain":{"from":"const","value":"test.com"},"uid":{"from":"inputs","value":"id"},"msg":{"from":"inputs","value":"chat7messagecon"},"isFilter":false}}} /*INSEND:WSNOTIFY*/
/*INSBEGIN:STDOUT*/ function() { _.extend(finish_data, { "success": true, "_runCommand": [{ "command": "vmArrFuc", "params": ["push", "chat", { "chat7messagecon": inputs.chat7messagecon, "pd": false, "chat7sendtim": tmp_data.chat1.chat7sendtim, "chat7messageper": tmp_data.chat1.chat7messageper, "chat7messagerec": tmp_data.chat1.chat7messagerec, "yonghu1": tmp_data.yonghu1.username, "yonghu2": tmp_data.yonghu2.username, "chat7recordthep": tmp_data.chat1.chat7recordthep, "_id": tmp_data.chat1._id }] }, { "command": "updatelv", "params": [{ "gundong": tmp_data.gundong }] }] }); }, //@wweditorinfo:{"id":"cf760ed9cbd5d5e99d047f3b7ac9dad0","editor":{"jsonValue":{"success":true,"_runCommand":[{"command":"vmArrFuc","params":["push","数组变量名",{"属性名1":"属性值1"},{"属性名2":"属性值2"}]},{"command":"updatelv","params":[{"a":"newValue"}]}]},"steppurpose":{"purpose":"finishdata"}}} /*INSEND:STDOUT*/
注意:发送消息时要 1→2→3→4依次进行
查询条件:要根据记录所属人id是自己并且发送人是对方 接收人是自己,或者记录所属人id是自己并且发送人是自己 接收人是对方。
yonghu1 和 yonghu2 分别为聊天两个人的名称,通过绑定变量名,实现右边现实当前用户,左边显示聊天的对象用户名
然后再通过发送人是不是自己来控制显隐(可以使用条件判断和否定条件判断 pd),如果发送人是自己就显示在右边,否则显示在左边
/*INSBEGIN:CUSTOM*/ function() { _.each(tmp_data.chat, function(v, k, l) { v.pd = ""; v.yonghu1 = tmp_data.yonghu1.username; v.yonghu2 = tmp_data.yonghu2.username; if (v.chat7messageper === tmp_data.yhid) { v.pd = false; } else { v.pd = "pd"; } }); }, /*INSEND:CUSTOM*/
注意:如果按以上步骤操作以后没有实时刷新,请更新wide 里面的“强制更新node” 再试一次。
聊天时:点击发送按钮后,如何把输入框里的内容清空.
1.在文本区textarea上绑定"表单元素值绑定",参数消息内容字段 chat7messagecon.
2.在聊天追加的视口中,在返回变量中添加 chat7messagecon ,给其附值为空字符串即可
1.给聊天体的div添加功能继承--添加父类功能继承---选择滚动条元素
注意: 此时原聊天体上会出现一个id,默认为 perfectscroll
2. 在聊天体上设置滚动条的宽度和高度,分别为元聊天体的宽度和高度,并将原聊天体的宽度和高度去掉(不然设置的滚动条是没有效果的)
3. 给滚动条的div上设置数据绑定--属性绑定, 绑定内容为: {"data--scrollbottom":gundong}
4.在聊天的内容追加中增加绑定值的内容更新
5.同样的方式在反向通知的内容中添加修改的内容
6.给滚动条的div上添加逻辑 -- 其他事件, 帮定数据编程 其他事件参数 y-end 数据编程内容为: _vm.gundong(false);
注意: 此效果按步骤完成即可实现