質問があります。クライアント側のAngularJSとサーバー側のアプリケーションのノードのビューを管理する正しい方法は何ですか?AngularJSとノードによるビューの処理
ログイン/登録フォームの「index.html」とチャットウィンドウなどの「chat.html」の2つのhtmlファイルを使用して、ログイン/登録機能を備えた簡単なチャットアプリケーションを開発しています。このようなノード(認証はまだ実装されていません):
const express = require('express');
const app = express();
const http = require('http').Server(app);
const io = require('socket.io').listen(http);
const path = require('path');
app.use(express.static(path.resolve('../client/')));
app.get('/', function (req, res) {
res.sendFile(path.resolve('../client/html/index.html'));
});
app.get('/chat', function (req, res) {
res.sendFile(path.resolve('../client/html/chat.html'));
});
または?私はかなり混乱しています。助けてください。
EDIT: もう1つ質問があります。ここで認証を行う正しい方法は何ですか?ユーザーデータは、サーバーにjsonsとして送信するか、 'form'要素を使用してhtmlレベルで管理する方がよいでしょうか?
複数の質問は悪い選択です。あなたは[How to Ask](https://stackoverflow.com/help/how-to-ask) – araknoid
を読んでください。さて、私は次回これを遵守します。 – dudinii