Exception nsresult: “0x805e0006 (<unknown>)” location when submitting changes using x-editable in yii

霸气de小男生 提交于 2019-12-02 08:05:01

This is a cryptic error for what may be a simple problem - the resource you're trying to reach cannot be hit. If you put a nonsense URL in, you would get this result. Also, you would get this if there was some kind of connection blocker, like an ad-block app, operating in the browser.

I would check the URL you're trying to hit by dumping it out to text and manually trying to see if you can reach the resource.

Sunil Shrestha

just do this

'url' => Yii::app()->createUrl(
    "examschedule/update",
    array("examcode"=>$examcode, 
        "sessioncode"=>$sessioncode, 
        "subjectcode"=>$data->subjectcode))',
    'placement' => 'right', ) 
),
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!