cakephp 3表单验证notEmpty

时间:2015-06-03 13:09:20

标签: php cakephp

我将标题字段设置为必需。

int showLeap = selectedLeap +1;
NSString *first = @"leap";
NSString *second = @""; if (showLeap<10) { second=@"0";}
NSString *third = [NSString stringWithFormat:@"%d", showLeap];
NSString *fourth = selectedMenu;
NSString *getHTML = [NSString stringWithFormat: @"%@%@%@%@", first, second, third, fourth];
NSLog(@"getHTML complete: %@", getHTML);

问题是标题输入未标记为必需。 我没有在另一张桌子上遇到这个问题。

1 个答案:

答案 0 :(得分:0)

一小时后我找到了答案。这是一个小错误。

在控制器动作中我写道:

$this->set('gallery');

虽然我应该这样做:

$this->set('gallery',$gallery);
抱歉浪费你的时间。