// Optionally the request above could also be done as
axios.get('/user', {
params: {
ID: 12345
}
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
})
.then(function () {
// always executed
});
<?php foreach ($categories as $category): ?>
<div class="filter-options_item">
<label for="category_<?= $category['id'] ?>" class="status_chk">
<input id="category_<?= $category['id'] ?>" type="checkbox" name="ProductSearch[category_id][<?= $category['id'] ?>]" value="<?= $category['id'] ?>" <?=isset(Yii::$app->request->post('ProductSearch'),Yii::$app->request->post('ProductSearch')['category_id'][$category['id']]) ? " checked='checked'" : "" ?> > <span class="label-text"><?= $category['title'] ?></span>
</label>
</div>
<?php endforeach; ?>
gulp.task('watch', function() {
gulp.watch(['app/scss/**/*.scss'], ['clean','blocks','sass']);
});
function Click(longitude, latitude, accuracy) {
var myMap;
DG.autoload(function () {
// Инициализируем карту, устанавливаем её центр и масштаб:
myMap = new DG.Map('map');
myMap.setCenter(new DG.GeoPoint(82.967, 55.008), 11);
// Добавляем элемент управления коэффициентом масштабирования:
myMap.controls.add(new DG.Controls.Zoom());
});
// Установка центра карты текущего местоположени:
myMap.setCenter(new DG.GeoPoint(longitude, latitude));
// Установка максимального зума:
myMap.setZoom(myMap.getMaxZoom());
// Создаем маркер с картинкой по умолчанию:
var marker = new DG.Markers.Common({geoPoint:new DG.GeoPoint(longitude, latitude) });
// Добавим маркер на карту:
myMap.markers.add(marker);
}
$(body),on("click",".deleteSomething",function(){
$.ajax({
url: "htt://site.ru/delete",
data:{"id":$(this).closest(".something").find(".id").val()}
})
.done(function( data ) {
$(this).closest(".something").remove();
$.fn.yiiListView.update("id-list");
});
})