1

尝试确定 x-editable 中的值时出现以下异常。[异常...“”nsresult:“0x805e0006()”位置:“JS frame :: :: .send :: line 8400”数据:无]

    View Code:

<?php $this->widget('bootstrap.widgets.TbGridView', array(
'id' => 'subjectgrid',
'itemsCssClass' => 'table-bordered items',
'dataProvider' => new CActiveDataProvider('Examschedule',array(
'criteria'=>array('condition'=>"examcode=:newexam and sessioncode=:sessioncode",
'params'=>array(':newexam'=>$examcode, ':sessioncode'=>$sessioncode),),
'pagination'=>array('pageSize'=>15),)),

'columns'=>array(
array('name' => 'examcode', 'headerHtmlOptions' => array('style' => 'width: 10px'),),
array('name' => 'sessioncode', 'headerHtmlOptions' => array('style' => 'width: 10px'),),
array('name' => 'subjectcode', 'headerHtmlOptions' => array('style' => 'width: 10px'),),
array('name' => 'groupcode', 'headerHtmlOptions' => array('style' => 'width: 10px'), ),

array('class' => 'editable.EditableColumn', 'name' => 'dateofexam', 'headerHtmlOptions' => array('style' => 'width: 10px'),
'editable' => array('type' => 'date', 'viewformat' => 'dd-mm-yyyy',
'url' => 'Yii::app()->createUrl("examschedule/update",array("examcode"=>$examcode, "sessioncode"=>$sessioncode, "subjectcode"=>$data->subjectcode))',
'placement' => 'right',) ),

array('class' => 'editable.EditableColumn','name' => 'sitting', 'headerHtmlOptions' => array('style' => 'width: 10px'),
'editable' => array('type' => 'select', 'source'=>array('1'=>'First Sitting', '2'=>'Second Sitting'),
'url' => 'Yii::app()->createUrl("examschedule/update",array("examcode"=>$examcode, "sessioncode"=>$sessioncode, "subjectcode"=>$data->subjectcode))',
'placement' => 'right', ) ),
),
));
?> 
4

3 回答 3

6

对于可能是一个简单问题的神秘错误 - 您尝试访问的资源无法被命中。如果你输入一个无意义的 URL,你会得到这个结果。此外,如果在浏览器中运行某种连接阻止程序(例如广告阻止应用程序),您也会得到此信息。

我会检查您尝试访问的 URL,方法是将其转储为文本并手动尝试查看您是否可以访问该资源。

于 2013-10-21T16:01:50.770 回答
0

就这样做

'url' => Yii::app()->createUrl(
    "examschedule/update",
    array("examcode"=>$examcode, 
        "sessioncode"=>$sessioncode, 
        "subjectcode"=>$data->subjectcode))',
    'placement' => 'right', ) 
),
于 2015-08-04T11:10:27.323 回答
0

对于四处搜索的任何人,都可以重现此错误:

wss://本地制作 websocket 服务器时。

[Exception... "<no message>"  nsresult: "0x805e0006 (<unknown>)"  location: "JS frame :: debugger eval code :: <TOP_LEVEL> :: line 10"  data: no] debugger eval code:10:9
Content Security Policy: The page’s settings blocked the loading of a resource at wss://192.168.1.100:9005/ (“default-src”).

此错误似乎与ssl 证书异常有关。

当 ssl 握手成功时,它会在此处显示,但内容安全策略破坏了 ssl 加密的套接字流。

于 2019-12-18T14:48:11.640 回答