massimans / yii2-googleplacesautocomplete
Yii2 的 Google Places 自动完成输入小部件
v0.1.1
2019-02-28 11:56 UTC
Requires
- php: >=5.4.0
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2024-09-29 00:32:06 UTC
README
Yii2 的 Google Places 自动完成小部件
## 安装
将以下内容添加到您的 composer.json
文件中
"repositories": [
{
"type": "vcs",
"url": "https://github.com/petrabarus/yii2-googleplacesautocomplete"
}
],
"requires": {
"petrabarus/yii2-googleplacesautocomplete": "*"
}
## 使用
使用小部件和模型。
use PetraBarus\Yii2\GooglePlacesAutoComplete\GooglePlacesAutoComplete;
echo GooglePlacesAutoComplete::widget([
'model' => $model,
'attribute' => 'location'
]);
使用小部件为自定义字段名和值。
use PetraBarus\Yii2\GooglePlacesAutoComplete\GooglePlacesAutoComplete;
echo GooglePlacesAutoComplete::widget([
'name' => 'place'
'value' => 'Jakarta'
]);
使用活动表单。
use yii\bootstrap\ActiveForm;
use PetraBarus\Yii2\GooglePlacesAutoComplete\GooglePlacesAutoComplete;
echo $form = ActiveForm::begin();
echo $form->field($model, 'location')->widget(GooglePlacesAutoComplete::className());