基于Ajax的聊天机器人

🤖️  哈喽!大家好呀。如果无聊就和机器人聊聊天吧

在初步进入Ajax学习 就忍不住给大家分享今天的劳动成果啦

先来看看效果图:

功能实现:

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

先来看看项目的总体结构

引入相关的文件:

html框架比较简单

 <div class="wrap">    <!-- 头部 Header 区域 -->    <div class="header">      <h3>小思同学</h3>      <img src="img/person01.png" alt="icon" />    </div>    <!-- 中间 聊天内容区域 -->    <div class="main">      <ul class="talk_list" style="top: 0px;" 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" style="display: none;">        <div class="drager ui-draggable ui-draggable-handle" style="display: none; height: 412.628px;"></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 style="display: none;"></audio>

<audio src="" id="voice" autoplay style="display: none;"></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 h3 {    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,h1,h2,h3,h4,h5,h6{    margin: 0;    padding: 0;}h1,h2,h3,h4,h5,h6{    font-size:100%;    font-weight:normal;}a{    text-decoration:none;}ul{    list-style:none;}img{    border:0px;}/* 清除浮动,解决margin-top塌陷 */.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()    }  })

大家赶快去试试吧

<

(0)

相关推荐

  • 基于Ajax的聊天机器人功能的实现

    🤖️ 哈喽!大家好呀.如果无聊就和机器人聊聊天吧 在初步进入Ajax学习 就忍不住给大家分享今天的劳动成果啦 先来看看效果图: 功能实现: 点击发送按钮事件 将用户输入的内容渲染到页面中 点击回车键将表单的内容渲染到页面中 获取机器人的内容 渲染到页面中 播放机器人的内容 先来看看项目的总体结构 引入相关的文件: html框架比较简单 <div class="wrap"> <!-- 头部 Header 区域 --> <div class="header"> <h3>小思同学</h3> <img src="img/person01.png" alt="icon" /> </div> <!-- 中间 聊天内容区域 --> <div class="main"> <ul class="talk_list" style="top: 0px;" id="talk_list"> <li class="l

  • 基于Ajax的聊天机器人

    🤖️  哈喽!大家好呀.如果无聊就和机器人聊聊天吧 在初步进入Ajax学习 就忍不住给大家分享今天的劳动成果啦 先来看看效果图: 功能实现: 点击发送按钮事件将用户输入的内容渲染到页面中点击回车键将表单的内容渲染到页面中获取机器人的内容 渲染到页面中播放机器人的内容 先来看看项目的总体结构 引入相关的文件: html框架比较简单 <div class="wrap"> <!-- 头部 Header 区域 --> <div class="header"> <h3>小思同学</h3> <img src="img/person01.png" alt="icon" /> </div> <!-- 中间 聊天内容区域 --> <div class="main"> <ul class="talk_list" style="top: 0px;" id="talk_list"> <li class="left

  • 不到20行代码用Python做一个智能聊天机器人

    伴随着自然语言技术和机器学习技术的发展,越来越多的有意思的自然语言小项目呈现在大家的眼前,聊天机器人就是其中最典型的应用,今天小编就带领大家用不到20行代码,运用两种方式搭建属于自己的聊天机器人. 1.神器wxpy库 首先,小编先向大家介绍一下本次运用到的python库,本次项目主要运用到的库有wxpy和chatterbot. wxpy是在 itchat库 的基础上,通过大量接口优化,让模块变得简单易用,并进行了功能上的扩展.什么是接口优化呢,简单来说就是用户直接调用函数,并输入几个参数,就可以

  • 使用 Python 创建一个基于规则的聊天机器人

    目录 1.聊天机器人 2.基于规则的聊天机器人 3.创建语料库 4.创建一个聊天机器人 5.总结 前言: 还记得这个价值一个亿的AI核心代码? while True: AI = input('我:') print(AI.replace("吗", " ").replace('?','!').replace('?','!')) 以上这段代码就是我们今天的主题,基于规则的聊天机器人 1.聊天机器人 聊天机器人本身是一种机器或软件,它通过文本或句子模仿人类交互. 简而言之,

  • python机器学习创建基于规则聊天机器人过程示例详解

    目录 聊天机器人 基于规则的聊天机器人 创建语料库 创建一个聊天机器人 总结 还记得这个价值一个亿的AI核心代码? while True: AI = input('我:') print(AI.replace("吗", " ").replace('?','!').replace('?','!')) 以上这段代码就是我们今天的主题,基于规则的聊天机器人 聊天机器人 聊天机器人本身是一种机器或软件,它通过文本或句子模仿人类交互. 简而言之,可以使用类似于与人类对话的软件进

  • 基于Vue2实现的仿手机QQ单页面应用功能(接入聊天机器人 )

    概述 使用Vue2进行的仿手机QQ的webapp的制作,在ui上,参考了设计师kaokao的作品,作品由个人独立开发,源码中进行了详细的注释. 由于自己也是初学Vue2,所以注释写的不够精简,请见谅. 项目地址 https://github.com/jiangqizheng/vue-MiniQQ 项目已实现功能 对话功能--想着既然是QQ总要能进行对话交流,所以在项目中接入了图灵聊天机器人,可以与列表中的每个人物进行对话. 左滑删除--左滑删除相关消息. 搜索页面--点击右上角搜索按钮,能够进入

  • 基于Python如何使用AIML搭建聊天机器人

    借助 Python 的 AIML 包,我们很容易实现人工智能聊天机器人.AIML,全名为Artificial Intelligence Markup Language(人工智能标记语言),是一种创建自然语言软件代理的XML语言,是由Richard Wallace和世界各地的自由软件社区在1995年至2002年发明的. AIML 是什么? AIML由Richard Wallace发明.他设计了一个名为 A.L.I.C.E. (Artificial Linguistics Internet Comp

  • 基于python的itchat库实现微信聊天机器人(推荐)

    一.开始之前必须安装itchat库 pip install itchat(使用pip必须在电脑的环境变量中添加Python的路径) 或 conda install request 二.开始编程前,我们需要在图灵机器人官网注册自己的图灵机器人,来实现我们程序的智能聊天功能 1.图灵机器人官网(http://www.turingapi.com/) 2.注册登录后点击创建机器人 3.创建成功后,可以获得机器人提供的API接口(apikey) 三.代码实现 import itchat import re

  • jQuery实现Ajax聊天机器人完成案例

    聊天机器人可以省掉很多人工方面的问题,在很多时候都可以用到,例如客服,天气回复等问题,本文就详细的介绍一下jQuery Ajax聊天机器人,具体如下: ' 实现步骤: 1.梳理案例的代码结构 a.梳理页面的UI布局 b.将业务代码抽离到chat.js中 c.了解resetui()函数的作用:重置滚动条的位置 <link rel="stylesheet" href="css/reset.css" rel="external nofollow"

  • Python基于Google Bard实现交互式聊天机器人

    目录 用Python基于Google Bard做一个交互式的聊天机器人 获取Session ID Python代码 运行与尝试 代码 用Python基于Google Bard做一个交互式的聊天机器人 之前已经通过浏览器试过了 Google Bard ,更多细节请看: Try out Google Bard, Will Google Bard beat the ChatGPT?. 现在我们想实现自动化,所以我用Python做一个交互式的聊天机器人. 获取Session ID 通过浏览器先拿到Ses

随机推荐