在 javascript 页面中嵌入单个 wiki 页面(动态创建)
我们可以通过 PHP 服务器在 javascript 页面内创建一个 wiki 页面(例如在选项卡中)(以协作编写和编辑文本)吗?
我想要的是:假设您有一个显示一些信息的网站(javascript、php),并且您希望页面包含两个选项卡:一个用于信息显示,另一个作为单个 wiki 页面来协作编写有关信息选项卡的内容。作为选项卡的替代方案,我们可以使用链接,但我不希望该链接将用户引导至外部页面或另一个系统(例如独立的完整维基)。
我还没有使用过wiki(作为一名程序员),如果这个问题的答案是肯定的,那么我将开始使用它!所以,请把我视为一个完全的初学者。如果您知道 wiki 之外的其他可以支持单页协作编辑的东西,请告诉我,应该有更简单的技术。
编辑: 我希望页面是动态创建的,所以只有一个页面是没有用的,我有n个信息选项卡,它们是根据一些数据创建的,我需要n个相应的wiki页面(因此,我无法手动创建这些页面并将它们添加到我的系统中)。
谢谢
Can we have a wiki page -e.g. in a tab- (to collaboratively write and edit a text) inside a javascript page by a PHP server?
What I want is the following: consider you have a website (javascript, php) showing some information, and you want your page to consist of two tabs: one for the information display and one as a single wiki page to collaboratively write something about the information tab. As an alternative to the tab, we may use a link but I don't want the link to direct user to an external page or to another system (like a standalone complete wiki).
I haven't used wiki (as a programmer), if the answer to this question is positive, then I will start using it! So, please consider me as a total beginner. If you know something other than wiki which can support collaborative editing on a single page please let me know, there should be lighter techniques.
EDIT:
I want the page to be dynamically created, so having only one page is not useful, I have n information tabs which are created according to some data and I need n corresponding wiki pages (so, I can't create these pages manually and add them to my system).
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们正在使用类似的解决方案,只需使用指向外部 wiki URL 的 IFRAME。 URL 取决于用户当前正在处理的项目。
大多数 Wiki 系统允许您打开任何不存在的 URL/Wiki 页面并一键创建页面。
在我们的例子中,我们使用的是 MoinMoin wiki,但我想您可以使用几乎所有的 Wiki 系统。
We are using a similar solution by simply using a IFRAME pointing to a external wiki URL. The URL depends on the item the user is currently working on.
Most Wiki systems allow you to open any inexistent URL/Wiki page and create the page with one click.
In our case we are using MoinMoin wiki, but I guess you could use almost every Wiki system out there.