0

我正在尝试使用 YouTube 小部件,但它似乎在 Silverstripe 3 中存在问题,并且它没有将 DataObjectSet 传递给模板,因此我无法将我的数据传递给模板。所有值都在 CMS 中正确显示,只是在模板中它们没有被传递,因此这似乎是 SS3 中的 DataObjectSet 的问题。我已经进行了广泛的搜索,但找不到任何提及它在 SS3 中被弃用的内容。

class YoutubeWidget extends Widget{
    static $title = "My favorite video";
    static $cmsTitle = "Your tube widget";
    static $description = "This widget can embed clips from youtube.com";

    static $db = array(
        "Width" => "Int",
        "Height" => "Int",
        "URL" => "Text",
        "Title" => "Text"
    );

    static $defaults = array(
        "Width" => 283,
        "Height" => 182
    );

    function getCMSFields(){
        return new FieldList(
            new NumericField("Width", "Video Width"),
            new NumericField("Height", "Video Height"),
            new TextField("URL", "Video URL"),
            new TextField("Title","Title or a note about this video")
        );
    }

    function GetVideoData(){
        $output = new DataObjectSet();
        $output->push(
            new ArrayData(
                array(
                    "Width" => $this->Width,
                    "Height" => $this->Height,
                    "URL" => $this->URL,
                    "Title" => $this->Title
                )
            )
        );      
        return $output;
    }
}

模板中没有填充任何变量。

<% control GetVideoData %>
    <object width="$Width" height="$Height">
        <param name="movie" value="$URL"></param>
        <param name="allowFullScreen" value="true"></param>
        <embed src="$URL" type="application/x-shockwave-flash" allowfullscreen="true" width="$Width" height="$Height"></embed>
    </object>

    <p style="text-align:center;">$Title</p>
<% end_control %>

如果我将控件包装在 <% if GetVideoData %> 中,它不会访问控件,表明没有返回任何内容,即使我将 GetVideoData 函数更改为仅返回一个字符串,也会发生这种情况。IEreturn "asdf";

4

2 回答 2

2

这是由于 SS3 的变化。我只需要从模板中的控制调用中删除“get”;

<% if VideoData %>
    <% control VideoData %>
    <% end_control %>
<% end_if %>
于 2012-09-16T23:53:52.143 回答
2

SS3 现在将使用<% loop VideoData %>or<% with VideoData %>代替<% control VideoData %>.

于 2013-05-22T21:15:12.953 回答