首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏小程序开发与运营

    常见的小程序右边悬浮客服代码示例

    <view class="<em>customer-service</em>" catchtap="tapCustomerService"> <image class="icon" src="customer-service.png "></image></view>.customer-service { position: fixed; right: 30rpx; bottom: 30rpx; width: 80rpx; 示例代码如下:Page({ tapCustomerService: function () { wx.navigateTo({ url: '/pages/customer-service /customer-service', }) }})在Page对象的tapCustomerService方法中使用wx.navigateToAPI跳转到名为customer-service的页面 请确保在小程序中已经创建了customer-service页面,并在页面的JS文件中实现了对应的逻辑。

    1.9K40编辑于 2023-04-21
  • 使用 Zuul、Ribbon、Feign、Eureka 和 Sleuth、Zipkin 创建简单spring cloud微服务用例-spring cloud 入门教程

    客户端调用customer-service内部可用的端点,该端点通过 Zuul 网关存储基本客户数据。 public List<Account> findAll() { logger.info("Account.findAll()"); return accounts; } } 这是customer-service public static void main(String[] args) { SpringApplication.run(Application.class, args); } } 请注意customer-service account/** serviceId: account-service customer: path: /customer/** serviceId: customer-service 就像我们看到的 Zuul 被配置为在其默认端口8765下可用;它转发来自/api/account/路径请求给account-service处理,来自/api/customer/的请求给customer-service

    34321编辑于 2025-04-05
  • 来自专栏陶士涵的菜地

    基于Vue.js和Golang构建高效在线客服系统:前端实现与后端交互详解

    项目初始化 mkdir customer-service && cd customer-service go mod init github.com/yourname/customer-service 控制器实现 // controllers/auth.go package controllers import ( "github.com/gin-gonic/gin" "net/http" "customer-service : "登录成功"}) } // controllers/message.go package controllers import ( "github.com/gin-gonic/gin" "customer-service 主程序 // main.go package main import ( "customer-service/controllers" "customer-service/models" "customer-service

    57310编辑于 2025-08-09
  • 来自专栏程序员泥瓦匠

    Spring Cloud Eureka 入门 (三)服务消费者详解

    nfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_CUSTOMER-SERVICE/10.18.29.64:customer-service nfoReplicator-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_CUSTOMER-SERVICE/10.18.29.64:customer-service o.s.springcloud.CustomerApplication : Started CustomerApplication in 17.075 seconds (JVM running for 18.141) 可以看出,注册了应用名为 CUSTOMER-SERVICE service-url: defaultZone: http://localhost:8888/eureka/ # 服务注册中心地址 spring: application: name: customer-service

    48620编辑于 2021-12-17
  • 集成SWAGGER2服务-spring cloud 入门教程

    swaggerResource("account-service", "/api/account/v2/api-docs", "2.0")); resources.add(swaggerResource("customer-service account/** serviceId: account-service customer: path: /customer/** serviceId: customer-service

    40410编辑于 2025-04-05
  • 来自专栏小工匠聊架构

    SpringBoot - Spring Boot 应用剖析

    在 SpringCSS 中,存在一个 customer-service,这是一个 Spring Boot 应用程序,也是主体服务。 为此,customer-service 一般会与用户服务 account-service 进行交互,但因为用户账户信息的更新属于低频事件,所以我们设计的实现方式是 account-service 通过消息中间件的方式将用户账户变更信息主动推送给 而针对 order-service,其定位是订单系统,customer-service 也需要从该服务中查询订单信息。SpringCSS 的整个系统交互过程如下图所示 ?

    50540发布于 2021-08-17
  • 来自专栏nginx

    基于Spring AI和Claude构建企业智能客服系统:从架构到实践的完整指南

    apiVersion: apps/v1 kind: Deployment metadata: name: intelligent-customer-service labels: app: customer-service spec: replicas: 3 selector: matchLabels: app: customer-service template: metadata : labels: app: customer-service spec: containers: - name: customer-service apiVersion: v1 kind: Service metadata: name: customer-service-service spec: selector: app: customer-service

    48210编辑于 2025-11-16
  • 来自专栏攻城狮的那点事

    SpringCloud微服务项目实战 - 微服务调用详解(附面试题)

    2),服务提供者(customer-service)接口提供 ? 3),服务调用实现 ? 2,Feign调用服务实现 Feign属于SpringCloud中常用的服务调用方式。

    2.5K21发布于 2020-04-14
  • 来自专栏卯金刀GG

    【Spring Cloud gateway】 集成测试

    filters: - StripPrefix=1 predicates: - Path=/customer-service/** # 访问地址:http://localhost:9018/customer-service/getUser ?

    78830发布于 2021-07-13
  • Vue接入AI聊天助手实战

    学员可以随时点击悬浮球获得学习帮助AI助手能够记住对话上下文,提供连贯的辅导支持语音输入,方便学员快速提问预设任务让学员快速找到需要的帮助类型场景二:企业客服系统<template>

    <SuspendedBallChat :url="customerServiceApiUrl" :app-name="'<em>customer-service</em>'" :

    48010编辑于 2025-09-27
  • 来自专栏攻城狮的那点事

    SpringCloud微服务项目实战 - API网关Gateway详解实现

    然后启动服务测试,按顺序启动,依次启动eureka-server、customer-service、order-service、gateway-service。然后登录eureka客户端。 ?

    3.4K10发布于 2020-05-28
  • 来自专栏全栈程序员必看

    zuul 网关的用途_Zuul网关

    ignored-services: – customer-service f.若想去除路由前缀,可做以下配置。

    2.2K20编辑于 2022-09-22
  • Vue3项目中集成AI对话功能的实战经验分享

    有大小限制敏感信息需要考虑安全性不同用户要用不同的storageKey在实际项目中的应用案例案例1:客服系统我们在客服系统中使用悬浮球模式,用户可以随时呼出AI助手:<template>

    <SuspendedBallChat :url="chatApiUrl" :app-name="'<em>customer-service</em>'" :domain-name

    1.4K10编辑于 2025-09-13
  • 来自专栏小工匠聊架构

    SpringBoot - 应用程序测试方案

    customer-service 的 schema-mysql.sql 中包含了 CUSTOMER 表的创建语句,如下代码所示: DROP TABLE IF EXISTS `customerticket 首先,我们来看一种简单场景,在 customer-service 中存在如下 CustomerTicketService 类: @Service public class CustomerTicketService 请注意:以上代码中的 OrderClient 是在 customer-service 中通过 RestTemplate 访问 order-service 的远程实现类,其代码如下所示: @Component ---- 测试 Controller 层 对 Controller 层进行测试之前,我们先来提供一个典型的 Controller 类,它来自 customer-service,如下代码所示: @RestController

    1.9K30发布于 2021-08-17
  • 程序员圈爆火,狂揽2.4K星!1秒内AI语音双向对话,支持个性化发音和多端适配,颠覆你的交互想象!

    口语练习者可进行沉浸式对话: 设置发音人为“英式男声” 开启话题:“讨论气候变化” AI实时纠正语法错误并评分 智能客服中枢 企业通过三步骤快速接入: // 示例:电商客服集成 app.post('/customer-service

    1.2K10编辑于 2025-05-31
  • 微服务集成SPRING CLOUD SLEUTH、ELK 和 ZIPKIN 进行监控-spring cloud 入门教程

    有 5 个 Spring Boot 应用程序需要运行discovery-service、account-service、customer-service、gateway-service和zipkin-service

    71110编辑于 2025-04-05
  • 来自专栏程序猿 Damon 带你进阶全栈

    KiteX 基于 K8s 的服务注册与发现

    customer01 nodePort: 30230 port: 3000 targetPort: customer01 selector: app: customer-service

    1.2K40编辑于 2022-12-05
  • 来自专栏陶士涵的菜地

    通过微信对客服系统客户进行消息提醒,比如客户快过期了,访客发来的消息也是通过模板消息通知给客服

    例如:https://yourdomain.com/customer-service?

    50510编辑于 2025-09-22
  • 【干货推荐】AI助理前端UI组件-悬浮球组件

    -- 智能客服 --> <SuspendedBallChat :url="'https://api.shop.com/<em>customer-service</em>'" :app-name=

    90500编辑于 2025-09-13
  • 来自专栏老蒋专栏

    实战解决域名/主机商转出域名索要费用问题② - Whois域名所有权信息变更

    10.19日收到ICANN的邮件回复: - ICANN does not have contractual authority to address any customer-service related

    7K20编辑于 2021-12-27
领券