Gibt es in KRL eine eingebaute Funktion zur Erzeugung einer GUID aus UUID (oder etwas Ähnlichem)?
Antwort
Zu viele Anzeigen?Ich habe ein Modul erstellt, das einen Webservice umschließt, der Ihnen vielleicht weiterhilft: UUID-Modul
So verwenden:
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}");
}
}