- 小程序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-18 - 小程序内嵌视频号视频,可以跳转到视频号吗?
小程序内嵌视频号视频,当视频在小程序播放后,可以点击视频跳出小程序,跳入视频号吗
2023-07-26