第二种,return url('dapp/page');
为什么得到个空对象
public function index()
{
if (IS_AJAX)
{
//(1)返回字符串"8fedd6e1b2d5a66c82aef6bde4bfcc32"
return md5('dapp/page');
//(2)返回空对象{}
return url('dapp/page');
//(3)返回/admin/dapp/page.html
echo url('dapp/page');
return;
}
return View::fetch();
}