example: async() => {
console.log('start');
for (let i in this.orders) {
await this.getOrder();
console.log('loaded ' + i);
}
console.log('finish');
}
<a href="#!" class="apply" onclick="onClickFunction">Подать заявку</a>
<script>
function onClickFunction(){
try { jivo_api.open({start : 'chat'}); } catch (e) {};
try { yaCounter55927183.reachGoal(‘HOMEGO‘); } catch (e) {};
}
</script>
Быть может есть разница в событии которое создается при клике мыши и событие которое генерируется скриптом ?
const through = require('through2');
const PLUGIN_NAME = 'my plugin ';
const myPlugin = function (options) {
return through.obj(function (file, enc, cb) {
if (file.isNull()) {
cb(null, file);
return;
}
if (file.isStream()) {
cb(new Error(PLUGIN_NAME + 'Streaming not supported'));
return;
}
try {
let content = file.contents.toString();
content = '';// ... что-то делаем
file.contents = Buffer.from(content);
} catch (err) {
this.emit('error', new Error(PLUGIN_NAME + err.message));
}
this.push(file);
cb();
});
};
function build() {
return gulp.src('./src/css/*.css')
.pipe(myPlugin)
//...
}
if (/\.css$/.exec(file.path) !== null) {
//...
}
methods: {
login() {
this.$auth.login({
params: {
email: this.email,
password: this.password
},
success: () => {
// handle redirection
const redirectTo = this.$auth.redirect()
? this.$auth.redirect().from.name
: this.$auth.user().role === 2
? 'admin.dashboard'
: 'dashboard'
this.$router.push({name: redirectTo})
},
error: error => {
this.has_error = true
this.errors = error.response.data.errors || {}
this.error = error.response.data.error
},
rememberMe: this.remember_me,
fetchUser: true
})
},
........
}
const mqDesktop = window.matchMedia('(min-width: 992px)');
const mqMobile = window.matchMedia('(max-width: 991px)');
mqDesktop.addListener(e => { if (e.matches) this.setBreakpoint('desktop');});
mqMobile.addListener(e => { if (e.matches) this.setBreakpoint('mobile'); });
if (mqDesktop.matches) this.setBreakpoint('desktop');
if (mqMobile.matches) this.setBreakpoint('mobile');
this.setBreakpoint()
— это мутация вьюкса. Тогда почему мне на экран вывело все элементы масива а не один? (тоесть результат их сложения). Почему не вывело 55?
var out= " ";
на var out= 0;
и получите на выходе 55
.