JSON 来描述 HTML 标签

发布于 2024-10-31 18:40:40 字数 429 浏览 1 评论 0原文

我需要以用户友好的格式表达 HTML 标签,然后将它们呈现为网页上的实际 HTML。

例如,假设用户希望此链接显示在页面上:

<a href="http://stackoverflow.com">Stack Overflow</a>

我的普通用户不熟悉 HTML,因此我正在考虑让他/她使用 JSON。像这样:

{Link:{Title:"Stack Overflow",URL:"http://stackoverflow.com"}}

然后我将使用 JSON 解析器在页面上呈现实际的 HTML。相同的方法适用于其他 HTML 标签(图像、按钮等)。

这已经完成了吗?关于如何在 JSON 中表达 HTML 标签有任何约定吗?

谢谢!

I have a need to express HTML tags in a user friendly format, and then render them as actual HTML on a Web Page.

For example, imagine that a user would like this link to show up on the page:

<a href="http://stackoverflow.com">Stack Overflow</a>

My average user is not familiar with HTML, so I was thinking about letting him/her use JSON instead. Something like this:

{Link:{Title:"Stack Overflow",URL:"http://stackoverflow.com"}}

I would then use a JSON parser to render the actual HTML on the page. The same method would apply to other HTML tags (images, buttons, etc.).

Has this already been done? Are there any conventions on how to express HTML tags in JSON?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

送你一个梦 2024-11-07 18:40:40

ExtJS 的 DOMHelper 类提供如下语法:

{
    id: 'my-ul',
    tag: 'ul',
    cls: 'my-list',
    children: [
        {tag: 'li', id: 'item0', html: 'List Item 0'},
        {tag: 'li', id: 'item1', html: 'List Item 1'},
        {tag: 'li', id: 'item2', html: 'List Item 2'}
    ]
}

ExtJS's DOMHelper class provides a syntax like this:

{
    id: 'my-ul',
    tag: 'ul',
    cls: 'my-list',
    children: [
        {tag: 'li', id: 'item0', html: 'List Item 0'},
        {tag: 'li', id: 'item1', html: 'List Item 1'},
        {tag: 'li', id: 'item2', html: 'List Item 2'}
    ]
}
娇女薄笑 2024-11-07 18:40:40

因此,似乎有一类称为“轻量级标记语言”的语言就可以做到这一点。感谢@zerocrates 的指点。我在这里找到了更多详细信息(包括每种实现语言或平台):
http://en.wikipedia.org/wiki/Lightweight_markup_language

另外,很高兴知道 ExtJS 有一个语法(感谢@Pumbb80)。它在我的情况下不起作用,因为我的目标是最终用户。

So it seems that there is a category of languages called "lightweight markup languages" that just do that. Thanks @zerocrates for the pointers. I found more details here (including for each the implementation language or platform):
http://en.wikipedia.org/wiki/Lightweight_markup_language

Also, good to know that ExtJS has a syntax for that (thanks @Pumbb80). It just won't work in my case because I am targeting end users.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文