0

我刚开始使用 dotCMS 来修改现有网站。我正在尝试创建一个小部件,该小部件采用名为 urlTitle 的自定义结构字段。它采用事件的标题并使其对 url 友好。这是一个描述 urlTitle 的教程

我有一个为 javascript 编写的正则表达式。我的问题是当我尝试在速度中使用相同的正则表达式时,我遇到了一些麻烦。

这是教程中的javascript:

<script>
    function updateDisplayURLTitle(){

        // get the title entered by the user
        var plainTitle = dojo.byId("title");    

        // make a friendly url
        var urlTitle = plainTitle.value.toLowerCase();
        urlTitle= urlTitle.replace(/^\s+|\s+$/g,"");
        urlTitle = urlTitle.replace(/[^a-zA-Z 0-9]+/g,' '); 
        urlTitle = urlTitle.replace(/\s/g, "-");
        while(urlTitle.indexOf("--") > -1){
            urlTitle = urlTitle.replace("--",'-');  
        }

        // set the values of the display place holder and the custom field
        // the   is to hold the div open
        dojo.byId("displayURLTitle").innerHTML = urlTitle;
        dojo.byId("urlTitle").value=urlTitle;
    }

    // attach this the text1 field onchange
    dojo.connect(dojo.byId("title"), "onchange", null, "updateDisplayURLTitle");

    // populate the field on load
    dojo.addOnLoad(updateDisplayURLTitle);

</script>
<div id="displayURLTitle" style="height:20px"> </div>

然后这是我的小部件的速度代码:

#set($nowsers = $date.format('yyyyMMddHHmmss', $date.getDate()))
#set($con = $dotcontent.pull("+structureName:calendarEvent +(conhost:48190c8c-42c4-46af-8d1a-0cd5db894797 conhost:SYSTEM_HOST) +calendarEvent.startDate:[$nowsers TO 21001010101000]",1,"calendarEvent.startDate"))
    <ul>
    #foreach($event in $con)
        <li>
           <a href="events/$event.urlTitle?id=$event.identifier">$event.title</a>
            <p> $event.description</p>
        </li>

#set($temp = $event.title.toLowerCase())
#set($temp = $temp.replaceAll('/^\s+|\s+$/g', ""))
#set($temp = $temp.replaceAll('/[^a-zA-Z 0-9]+/g', " "))
#set($temp = $temp.replaceAll('/\s/g', "-"))
$temp


$temp
#end

我的目标是让 javascript 中的正则表达式与速度一起工作。现在它不起作用,我对正则表达式的熟练程度不高,到目前为止,我的研究没有让我取得任何进展。

我无法弄清楚的另一件事是它的/g作用。我在任何正则表达式资源网站中都找不到它。

4

1 回答 1

0

我想到了。事实证明,正则表达式模式前面的转义字符 / 和 /g 导致模式失败,因此速度中使用的方法一定不需要它。

于 2013-01-11T23:01:37.343 回答