-
Notifications
You must be signed in to change notification settings - Fork 640
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Исправляет описание работы с worker #5564
base: main
Are you sure you want to change the base?
Conversation
Привет, worker.onmessage = function (e) { // Слушаем сообщения из воркера
console.log(e.data) // <--
// База, это 415-ый, как слышно?
} |
исправил |
js/web-workers/index.md
Outdated
@@ -55,7 +55,7 @@ worker.postMessage({ message: '415-ый, я база, ответьте' }) | |||
```js | |||
// Воркер: worker.js | |||
onmessage = function (e) { // Слушаем сообщения из основного потока | |||
if (e.message === '415-ый, я база, ответьте') { | |||
if (e.data.message === '415-ый, я база, ответьте') { | |||
{/* Отправляем сообщение из воркера в основной поток */} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Привет! Всё круто. Но тут по пути, строчкой ниже твоей правки, я заметил одну микро-бяку, давай её поправим заодно? Заменим на классический однострочный комментарий, как в остальной статье:
{/* Отправляем сообщение из воркера в основной поток */} | |
// Отправляем сообщение из воркера в основной поток |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Привет, поправил!
Превью контента из bf0627b опубликовано. |
Описание
исправил описание работы с worker
Чек-лист
/css/color/
,/tools/json/
,/tools/gulp/#kak-ponyat
)images/example.png
,demos/example/
,../demos/example/
)