4

KRL 中是否有用于生成 UUID 的 GUID(或类似的东西)的内置函数?

4

1 回答 1

4

我创建了一个模块,该模块包装了一个可能会阻止您的 Web 服务:UUID 模块

像这样使用:

ruleset a8x165 {
    meta {
        name "UUID Module Example"
        description <<
            Example use of the UUID Module
        >>
        author "Sam Curren"
        logging off
        use module a8x164 alias uuid
    }

    dispatch {}

    global {}

    rule first_rule {
        select when pageview ".*" setting ()
        pre {
            testuuid = uuid:new_uuid();
        }
        notify("Hello World", "This is a UUID: #{testuuid}");
    }
}
于 2011-04-20T16:29:08.490 回答