0

拡張機能http://www.yiiframework.com/extension/nlsclientscript/を使用するにはどうすればよいですか?

私はこれを試しました:

config/main.php:

'clientScript' => array( 
'class' => 'ext.NLSClientScript',

ビュー/レイアウト/main.php:

$cs = Yii::app()->getClientScript();
$systemJsPath = Yii::app()->getAssetManager()->publish(
     Yii::getPathOfAlias('system.web.js' ), false, -1, false );
$cs->registerScriptFile('jquery');
$cs->registerScriptFile( $systemJsPath . '/custom.js');
$cs->registerScriptFile( $systemJsPath . '/ext/plugins/jquery.form.js');

しかし、うまくいきません。jQuery が読み込まれていません。

4

1 に答える 1