Rebol:如何将局部变量与构建标记函数一起使用?
有没有办法做到这一点,包括创建其他构建标记函数?
Is there a way to do so including creating an other build-markup function ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法做到这一点,包括创建其他构建标记函数?
Is there a way to do so including creating an other build-markup function ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
遗憾的是,build-markup 仅使用全局变量:链接文本 说:请注意,标签内使用的变量始终是全局变量。
这是使用内部对象(bm-1 演示了问题:a 和 b 打印了它们的全局值 bm-2 是一种古怪的解决方法):
REBOL3 有 reword 而不是 构建标记。这样就灵活多了。
Sadly,build-markup uses only global variables: link text says: Note that variables used within tags are always global variables.
Here's a slightly cranky way of doing it using an inner object (bm-1 demonstrates the problem: a and b are printed with their global values; bm-2 is the cranky work around):
REBOL3 has reword rather than build-markup. That is much more flexible.
我已经修补了构建标记函数,以便能够使用本地上下文:
以下是一些示例用法:
I've patched the build-markup function to be able to use local contexts:
Here are some example usages: