如何编写类似于 Stackoverflow、FB 或 OKC 的文本区域?
stackoverflow 如何实现该网站的“评论”部分?我想创建类似于 FB Wall 或 okcupid.com 个人资料编辑的内容。
我的目标是创建一个类似 wiki 的网站,它具有像每个网站一样的可编辑区域。重要的是,我可以将用户的 cookie 与服务器端的编辑相关联,以便我可以保持跟踪。
How does stackoverflow implement the "comments" section of this site? I'd like to create something similar to a FB Wall or okcupid.com profile edit.
My goal is to create a wiki of sorts that has editable regions like each of these sites. It's important that I can associate the user's cookie with the edit on the serverside so I can maintain tracking.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Firefox 中的 WebDeveloper 工具栏。选择信息>查看 JavaScript。一切都在那里,只需添加一点 AJAX 进行更新即可。虽然不确定这种做法是否被允许,但我相信 SO 的来源是受版权保护的。
当然,MarkDown 已被部分剥离,但您可以通过简单地允许所有 MarkDown 并下载一个开源解析器来简化这一部分。
Take the WebDeveloper Toolbar in Firefox. Select Information > View JavaScript. It's all there, just add a little AJAX for the updates. Not sure if this practice is allowed though, I believe the sources of SO are copyrighted.
The MarkDown, of course, is partially stripped, but you can simplify this part by simply allowing all MarkDown and downloading one of the open source parsers.