/**
  * 判断cookie值是否存在
  *
  * @param string $name
  */
 public function exist($name)
 {
     $this->prefix && ($name = $this->prefix . $name);
     return WindCookie::exist($name);
 }