yii2 ajaxform
1.0.2
使用jquery.form
使ActiveForm
能够通过ajax提交,但不能全页重新加载。
使用作曲家:
$ composer require light/yii2-ajaxform=*
use light widgets ActiveForm ;
use yii web JsExpression ;
ActiveForm:: begin ([
' ajaxSubmitOptions ' => [
' success ' => new JsExpression ( ' function(response) {console.log(response)} ' ),
' complete ' => new JsExpression ( ' function() {console.log("request completed.")} ' )
]
])
enableAjaxSubmit
为trueajaxSubmitOptions
$ phpunit