文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

怎么用Ajax实现聊天机器人

2023-06-25 12:41

关注

本篇内容介绍了“怎么用Ajax实现聊天机器人”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

 功能实现:

点击发送按钮事件将用户输入的内容渲染到页面中点击回车键将表单的内容渲染到页面中获取机器人的内容 渲染到页面中播放机器人的内容

先来看看项目的总体结构

怎么用Ajax实现聊天机器人  

引入相关的文件:

怎么用Ajax实现聊天机器人

 怎么用Ajax实现聊天机器人

html框架比较简单 

 <div class="wrap">    <!-- 头部 Header 区域 -->    <div class="header">      <h4>小思同学</h4>      <img src="img/person01.png" alt="icon" />    </div>    <!-- 中间 聊天内容区域 -->    <div class="main">      <ul class="talk_list"  id="talk_list">        <li class="left_word">          <img src="img/person01.png" /> <span>嗨,最近想我没有?</span>        </li>        <!-- <li class="right_word">            <img src="img/person02.png" /> <span>你好哦</span>          </li> -->      </ul>      <div class="drag_bar" >        <div class="drager ui-draggable ui-draggable-handle" ></div>      </div>    </div>    <!-- 底部 消息编辑区域 -->    <div class="footer">      <img src="img/person02.png" alt="icon" />      <input type="text" placeholder="说的什么吧..." class="input_txt" id="ipt" />      <input type="button" value="发 送" class="input_sub" id="btnSend" />    </div>  </div> <audio src="" id="voice" autoplay ></audio>

  <audio src="" id="voice" autoplay ></audio>这里的音频播放标签,一定要添加autoplay属性,自动播放,不过不添加这个属性,播放机器人的功能就不能实现哟

main.css

body {    font-family: 'Microsoft YaHei';}.wrap {    position: fixed;    width: 450px;    left: 50%;    margin-left: -225px;    top: 20px;    bottom: 20px;    border: 1px solid #ebebeb;    background-color: #fff;    border-radius: 10px;    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);    overflow: hidden;}.header {    height: 55px;    background: linear-gradient(90deg, rgba(246, 60, 47, 0.6), rgba(128, 58, 242, 0.6));    overflow: hidden;}.header h4 {    color: #faf3fc;    line-height: 55px;    font-weight: normal;    float: left;    letter-spacing: 2px;    margin-left: 25px;    font-size: 18px;    text-shadow: 0px 0px 5px #944846;}.header img {    float: right;    margin: 7px 25px 0 0;    border-radius: 20px;    box-shadow: 0 0 5px #f7f2fe;}.main {    position: absolute;    left: 0;    right: 0;    top: 55px;    bottom: 55px;    background-color: #f4f3f3;    box-sizing: border-box;    padding: 10px 0;    overflow:hidden;}.talk_list{    position: absolute;    width:100%;    left:0px;    top:0px;}.talk_list li {    overflow: hidden;    margin: 20px 0px 30px;}.talk_list .left_word img {    float: left;    margin-left: 20px;}.talk_list .left_word span {    float: left;    background-color: #fe9697;    padding: 10px 15px;    max-width: 290px;    border-radius: 12px;    font-size: 16px;    color: #fff;    margin-left: 13px;    position: relative;    line-height: 24px;}.talk_list .left_word span:before {    content: '';    position: absolute;    left: -8px;    top: 3px;    width: 13px;    height: 12px;    background: url('../img/corner01.png') no-repeat;}.talk_list .right_word img {    float: right;    margin-right: 20px;}.talk_list .right_word span {    float: right;    background-color: #fff;    padding: 10px 15px;    max-width: 290px;    border-radius: 12px;    font-size: 16px;    color: #000;    margin-right: 13px;    position: relative;    line-height: 24px;}.talk_list .right_word span:before {    content: '';    position: absolute;    right: -8px;    top: 3px;    width: 13px;    height: 12px;    background: url('../img/corner02.png') no-repeat;}.drag_bar{    position:absolute;    right:0px;    top:0px;    background-color: #fff;    height:100%;    width:6px;    box-sizing:border-box;    border-bottom:1px solid #f4f3f3;}.drager{    position:absolute;    left:0px;    top:0px;    background-color: #cdcdcd;    height:100px;    width:6px;    border-radius:3px;    cursor: pointer;}.footer{    width:100%;    height: 55px;    left:0px;    bottom:0px;    background-color:#fff;    position: absolute;}.footer img{    float: left;    margin:8px 0 0 20px;}.input_txt{    float: left;    width:270px;    height:37px;    border:0px;    background-color: #f4f3f3;    margin:9px 0 0 20px;    border-radius:8px;    padding:0px;    outline:none;    text-indent:15px;}.input_sub{    float: left;    width:70px;    height:37px;    border:0px;    background-color: #fe9697;    margin:9px 0 0 15px;    border-radius:8px;    padding:0px;    outline:none;    color:#fff;    cursor: pointer;    }

reset.css部分

body,ul,h2,h3,h4,h5,h6,h7{    margin: 0;    padding: 0;}h2,h3,h4,h5,h6,h7{    font-size:100%;    font-weight:normal;}a{    text-decoration:none;}ul{    list-style:none;}img{    border:0px;}.clearfix:before,.clearfix:after{    content:'';    display:table;    }.clearfix:after{    clear:both;}.clearfix{    zoom:1;}.fl{    float:left;}.fr{    float:right;}

接下来就是本项目的精华所在

 首先为发送按钮绑定点击事件,trim()方法是去除表单里面的空字符,开始为表单内容是否为空来一次判断。

如果用户输入了内容,将表单里面的内容渲染到页面,我相信大家都非常的熟练了

// 为发送按钮绑定鼠标点击事件  $('#btnSend').on('click', function() {    var text = $('#ipt').val().trim()    if (text.length <= 0) {      return $('#ipt').val('') //用户输入的内容为空    }    // 如果用户输入了聊天内容,则将聊天内容追加到页面上显示    $('#talk_list').append('<li class="right_word"><img src="img/person02.png" /> <span>' + text + '</span></li>')    $('#ipt').val('')//文本为空    // 重置滚动条的位置    resetui()    // 发起请求,获取聊天内容    getMsg(text)  })

接下来就是机器人的回复内容啦:

用一个getMsg函数封装 传递放入参数就是用户输入的内容

 下一些Ajax的get获取内容,根据文档提供的地址http://www.liulongbin.top:3006/api/robot

当 res.message === 'success' 表示获取聊天信息成功 就接受聊天信息,将信息追加到页面

  // 获取聊天机器人发送回来的消息  function getMsg(text) {    $.ajax({      method: 'GET',      url: ' http://www.liulongbin.top:3006/api/robot',      data: {        spoken: text      },      success: function(res) {        // console.log(res)        if (res.message === 'success') {          // 接收聊天消息          var msg = res.data.info.text          $('#talk_list').append('<li class="left_word"><img src="img/person01.png" /> <span>' + msg + '</span></li>')          // 重置滚动条的位置          resetui()          // 调用 getVoice 函数,把文本转化为语音          getVoice(msg)        }      }    })  }

然后就是将文本转化为语音播放功能

同样的封装一个函数getVoice() 传递的参数是接受到的机器人的聊天消息msg

// 把文字转化为语音进行播放  function getVoice(text) {    $.ajax({      method: 'GET',      url: ' http://www.liulongbin.top:3006/api/synthesize',      data: {        text: text      },      success: function(res) {        // console.log(res)        //下面的值可以通过console.log(res)输出查看里面的属性值        if (res.status === 200) {          // 播放语音 路径          $('#voice').attr('src', res.voiceUrl)        }      }    })  }

最后一个功能就是用户按回车也可以发送消息

 // 为文本框绑定 keyup 事件  $('#ipt').on('keyup', function(e) {    // console.log(e.keyCode)    if (e.keyCode === 13) {      // console.log('用户弹起了回车键')      $('#btnSend').click()    }  })

“怎么用Ajax实现聊天机器人”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯