我该怎么说:
<?php echo $this->Html->meta(array('name' => 'robots', 'content' => 'noindex'));?>
从我的角度来看,在我的布局的头部?
我尝试了与脚本和 css 相同的技术,通过添加第二个参数来指定我的块,但它不起作用。
我该怎么说:
<?php echo $this->Html->meta(array('name' => 'robots', 'content' => 'noindex'));?>
从我的角度来看,在我的布局的头部?
我尝试了与脚本和 css 相同的技术,通过添加第二个参数来指定我的块,但它不起作用。
<?php $this->Html->meta(array('name' => 'robots', 'content' => 'noindex,nofollow'), null, array('inline' => false)) ?>
我错过了第二个参数:null
如果您查看测试用例,它应该可以工作! https://github.com/cakephp/cakephp/blob/2.3/lib/Cake/Test/Case/View/Helper/HtmlHelperTest.php#L1520
例如
echo $this->Html->meta(array('name' => 'ROBOTS', 'content' => 'ALL'));
你试过最新的2.2头吗?以防万一过去有一些修复可以纠正这个问题。
PS:视图块直到 2.1 才引入。您似乎有 2.0 从查看您的标签。