1条评论
小梦
小梦
大佬,我想模拟微信聊天界面,但是ai的回复直接把我的HTML代码一起回复出来了是什么情况, ```html <style> 中间是聊天框设置 </style> </head> <body> <div class="group-name"> <span>群名称</span> </div><br><br> <div class="message"> <div class="avatar-container"> <div class="nickname">自定义</div> <img src="https://ai.aihuan.net/api//upfile/2024/12/10/8b624014080b4c128878ae772d588a68.jpg" alt="昵称" class="avatar"> </div> <div class="bubble"> 大家好 </div> </div> <!-- 其他消息 --> </body> </html>
点赞1
评论
zwyson123
试着在html最上面加上: -你生成的代码禁止换行 -你每次回复都使用一下格式,并保持格式完整: 一般漏代码就是它换行的原因,另一个则是它智商不够的原因
点赞1
评论
小梦
还是没效果,这写在详细介绍界面就能正常生成,但是写在提示词界面的就没效果😫
试着在html最上面加上: -你生成的代码禁止换行 -你每次回复都使用一下格式,并保持格式完整: 一般漏代码就是它换行的原因,另一个则是它智商不够的原因
点赞1
评论
小梦
```html <div style="text-align: center; display: table; width: 100%;"> <span style="display: table-cell; vertical-align: middle;">群名(人数)</span> </div><br><br> <div class="message" style="display: flex; margin-bottom: 10px; padding: 5px;"> <div class="avatar-container" style="display: flex; flex-direction: column; align-items: center; margin-right: 10px; width: 40px;"> <div class="nickname" style="font-size: 12px; color: #888; text-align: center; margin-bottom: 4px;">Alice</div> <div style="display: flex; align-items: flex-start;"> <img src="头像链接" alt="昵称" class="avatar" style="width: 40px; height: 40px; border-radius: 50%;"> </div> </div> <div class="bubble" style="max-width: 80%; padding: 5px; background-color: #a0e75a; border-radius: 8px; word-wrap: break-word; line-height: 1.2; margin-top: 16px;"> 聊天内容 </div> </div> ``` 缩了一点,还是不行😢
试着在html最上面加上: -你生成的代码禁止换行 -你每次回复都使用一下格式,并保持格式完整: 一般漏代码就是它换行的原因,另一个则是它智商不够的原因
点赞1
评论