Как вызвать переменную в javascript с помощью telnet - PullRequest
1 голос
/ 20 апреля 2020

У меня есть сайт, который состоит из нескольких страниц. Мой сайт не размещен и просматривается через xampp localhost. Я хочу знать, как бы я вызывал переменные, чтобы изменить цвет на красный при получении Mute и зеленый при получении MuteOn от удаленного устройства te lnet для кода значков под помеченным значком. Также это мой текущий код подключения te lnet javascript. В конечном итоге я хотел бы, чтобы на моем сервере. js была функция получения команд и затем их реализация на моей веб-странице.

Сервер. js:

// Include Nodejs' net module.
const Net = require('net');
// The port on which the server is listening.
const port = 50000;
// Use net.createServer() in your code. This is just for illustration purpose.
// Create a new TCP server.
const server = new Net.Server();
// The server listens to a socket for a client to make a connection request.
// Think of a socket as an end point.
server.listen(port, function() {
    console.log(`Server listening for connection requests on socket localhost:${port}`.);
});
// When a client requests a connection with the server, the server creates a new
// socket dedicated to that client.
server.on('connection', function(socket) {
    console.log('A new connection has been established.');
    // Now that a TCP connection has been established, the server can send data to
    // the client by writing to its socket.
    socket.write('Hello, client.');
    // The server can also receive data from the client by reading from its socket.
    socket.on('data', function(chunk) {
        console.log(`Data received from client: ${chunk.toString()`.});
    });
    // When the client requests to end the TCP connection with the server, the server
    // ends the connection.
    socket.on('end', function() {
        console.log('Closing connection with the client');
    });
    // Don't forget to catch error, for your own sake.
    socket.on('error', function(err) {
        console.log(`Error: ${err}`);
    });
});

Код значка:

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="fonts/font-awesome-4.7.0/css/font-awesome.min.css">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
</head>
<body>

<div class="flex-w flex-c-m p-t-5 p-b-0">
<a href="#" class="flex-c-m how-social trans-04 m-r-50 m-l-50 m-b-5">
<i class='fas fa-volume-up' style='font-size:95px;color:white'></i>
</a>

<a href="#" class="flex-c-m how-social trans-04 m-r-50 m-l-50 m-b-5">
<i class='fas fa-microphone' style='font-size:95px;color:white'></i>
</a>

<a href="#" class="flex-c-m how-social trans-04 m-r-50 m-l-50 m-b-5">
<i class='fas fa-phone-volume' style='font-size:95px;color:white'></i>
</a>

<a href="#" class="flex-c-m how-social trans-04 m-r-50 m-l-50 m-b-5">
<i class='fas fa-video' style='font-size:95px;color:white'></i>
</a>
</div>
</div>

</body>
</html>

Я использовал html, css и javascript при разработке этой веб-страницы. Я новичок в использовании te lnet, поэтому вся информация очень ценится Спасибо!

1 Ответ

2 голосов
/ 21 апреля 2020

Вам понадобится что-то вроде express, чтобы настроить и подать HTML. Te lnet использует протокол TCP, который отличается от протокола HTTP.

...