我在客户端网站上看到一些奇怪的错误。这是别人为他申请的代码。错误消息表示resultNodes.Select(o => new YourModelClass()
{
stepId = (string)o.Parent.Element("stepID"),
elementId = (string)o.Parent.Parent.Parent.Element("ElementID")
//alternatively :
//elementId = (string)o.Ancestors("Element").First().Element("ElementID")
});
不在对象上下文中,但$this
已从Class
扩展到哪里。
请帮忙。
错误的
致命错误:在第6行的contactController.php中不在对象上下文中时使用$ this
contactController.php
App
app.php
class contactController extends App{
public function index(){
$this->view('content'); //error mmessage is pointing here
}
}
答案 0 :(得分:1)
尝试改变:
class contactController extends App{
public function index(){
$this->view('content'); //error mmessage is pointing here
}
}
致:
class contactController extends App{
public function index(){
parent::view('content'); //error mmessage is pointing here
}
}