Rebol:如何将局部变量与build-markup函数一起使用?

时间:2009-08-23 10:11:01

标签: rebol

有没有办法这样做,包括创建其他构建标记功能?

2 个答案:

答案 0 :(得分:1)

可悲的是, build-markup 仅使用全局变量:link text说:请注意,标记中使用的变量始终是全局变量。

这是使用内部对象( bm-1 )的一种略微胡思乱想的方式来演示问题:a和b打印有其全局值; bm-2 是一个胡思乱想的工作):

a: "global-a"
b: "global-b"


bm-1: func [a b][
      print build-markup "<%a%> <%b%>"
   ]

bm-2: func [a b][
    cont: context [
       v-a: a
       v-b: b
       ]
      print build-markup "<%cont/v-a%> <%cont/v-b%>"
   ]

bm-1 "aaa" "bbb"
bm-2 "aaa" "bbb"

REBOL3具有 reword 而不是 build-markup 。这更灵活。

答案 1 :(得分:1)

我修补了构建标记功能,以便能够使用本地上下文:

build-markup: func [
    {Return markup text replacing <%tags%> with their evaluated results.}
    content [string! file! url!]
    /bind obj [object!] "Object to bind"    ;ability to run in a local context
    /quiet "Do not show errors in the output."
    /local out eval value
][
    content: either string? content [copy content] [read content]
    out: make string! 126
    eval: func [val /local tmp] [
        either error? set/any 'tmp try [either bind [do system/words/bind load val obj] [do val]] [
            if not quiet [
                tmp: disarm :tmp
                append out reform ["***ERROR" tmp/id "in:" val]
            ]
        ] [
            if not unset? get/any 'tmp [append out :tmp]
        ]
    ]
    parse/all content [
        any [
            end break
            | "<%" [copy value to "%>" 2 skip | copy value to end] (eval value)
            | copy value [to "<%" | to end] (append out value)
        ]
    ]
    out
]

以下是一些示例用法:

>> x: 1 ;global
>> context [x: 2 print build-markup/bind "a <%x%> b" self]
"a 2 b"
>> print build-markup/bind "a <%x%> b" context [x: 2]
"a 2 b"