Как решить данную проблему с React?Прочитать документацию.
return (
<div>
<h1> Hello</h1>
<section> Body</section>
</div>
)
Что будет производительнее и быстрее?
После того, как в стандарте ввели объявление переменных с помощью let, имеет ли смысл пользоваться var?В супер-пупер редких случаях поведение var может понадобиться. А так, конечно, лучше использовать let, его для того и придумали.
Создал еще пару sass файлов что бы разделить код на блокиВ названии этих файлов в начале должен быть
_
. Например, _foo.scss
.If you have a SCSS or Sass file that you want to import but don't want to compile to a CSS file, you can add an underscore to the beginning of the filename. This will tell Sass not to compile it to a normal CSS file. You can then import these files without using the underscore.
For example, you might have _colors.scss. Then no _colors.css file would be created, and you can do@import "colors";
and _colors.scss would be imported.
Как будто обработчик событий повесели прям на ввод консоли.
Object.prototype.watchДействительно, похоже на то!
<?php
if ( ! empty( $paralax_one_our_story_image ) ) {
$scrollreveal = !empty($parallax_one_frontpage_animations) && $parallax_one_frontpage_animations === true ? 'data-scrollreveal="enter left after 0.15s over 1s"' : '';
echo '<div class="col-md-6 content-section brief-content-one" ' . $scrollreveal . '><div class="tabs">';
} else {
echo '<div class="col-md-12 content-section brief-content-one">';
} ?>
Пока склоняюсь к обычному 200 но в теле передавать свой статус: "success" или "error" с сообщением объясняющем причину ошибки. Ну а на стороне php разбирать тело ответа и принимать решение что делать дальше.Многие разработчики апи (включая меня) так и поступают.
То добавлять в сессию это значение и впоследствии туда редиректить.Это уже сделано и называется
redirect()->intended()
.The intended method on the redirector will redirect the user to the URL they were attempting to access before being intercepted by the authentication middleware. A fallback URI may be given to this method in case the intended destination is not available.https://laravel.com/docs/5.4/authentication