你好,我想问一下你这个对话页面是自己开发的吗还是找的开源页面
小程序web-view加载本地部署deepseek服务AI对话框网页地址,流式对话不显示,怎么解决?<template> <view class="container"> <view class="bg-container"> <web-view :webview-styles="webviewStyles" :src="href"></web-view> </view> </view> </template> <script> export default { data() { return { href: 'http://192.168.1.55:3000/ui/chat/a87a2f1d702c15a0', webviewStyles: { progress: { color: '#FF3333' } } }; }, methods: { } } </script> <style lang="less"> .container { font-size: 14px; background-color: ghostwhite; } .bg-container { height: 200px; display: flex; justify-content: center; align-items: flex-end; background-image: url('@/static/icon_index_top.png'); background-size: cover; background-repeat: no-repeat; } </style> [图片] 在网页端打开是可以正常回答的,而将其使用web-view嵌套在小程序内进行提问,则问答不会即时显示,需要重新进入对话框后,才能看到刚才提问的回答,有什么解决方案可以解决嘛?
02-25楼主,你有实现吗
视频号直播间,点击橱窗中的商品如何跳转至小程序的落地页?问题:视频号直播间,点击橱窗中的商品如何跳转至小程序的落地页? 操作流程:1、点击视频号直播间的橱窗;2、点击橱窗中的商品;3、跳转小程序页面; 示例图片: [图片] [图片] [图片]
2023-11-27