C:\Users\Administrator\Desktop>meteor create todo-app
建立成功後生成目錄結構如下所示(看網路情況,可能需要好幾分鐘才能完成):
要檢視應用程式,需要執行的命令 meteor 應用程式,然後在瀏覽器中開啟URL:http://localhost:3000
C:\Users\Administrator\Desktop\todo-app>meteor
取而代之預設的檔案結構,我們將重構它。讓我們建立 client 檔案夾,並建立 todo-app.html, todo-app.css和todo-app.js。
建立專案時程式自動建立了 client 和 server 這兩個目錄,這裡我們先要把 client 和 server 這兩個目錄中的檔案內容清空,接著再建立以下所需的檔案,執行如下命令:
C:\Users\Administrator\Desktop\todo-app\client>touch todo-app.html
C:\Users\Administrator\Desktop\todo-app\client>touch todo-app.js
C:\Users\Administrator\Desktop\todo-app\server>touch server.js
C:\Users\Administrator\Desktop\todo-app>mkdir server
C:\Users\Administrator\Desktop\todo-app\collections>touch task-collection.js
我們開發的第一個開發步驟是為應用程式建立HTML。我們需要輸入欄位,來新增新的任務。任務將有刪除和檢查功能列表的形式。我們也將顯示或隱藏已完成的任務的功能。
<head> <title>Todo App</title> </head> <body> <h1>Todo List ({{incompleteCount}})</h1> <label class = "hide-completed"> <input type = "checkbox" checked = "{{hideCompleted}}" /> Hide Completed Tasks </label> <form class = "new-task"> <input type = "text" name = "text" placeholder = "Add new tasks" /> </form> <ul> {{#each tasks}} {{> task}} {{/each}} </ul> </body> <template name = "task"> <li class = "{{#if checked}}checked{{/if}}"> <button class = "delete">x</button> <input type = "checkbox" checked = "{{checked}}" class = "toggle-checked" /> <span>{{username}} - {{text}}</span> </li> </template>
Tasks = new Mongo.Collection("tasks");
我們將在伺服器端定義應用程式的方法。這些方法將來自用戶端的呼叫。在這個檔案中,我們還將發布資料庫查詢功能。
//Publishing tasks from the server... Meteor.publish("tasks", function () { return Tasks.find({}); }); //Methods for handling MongoDb Tasks collection data... Meteor.methods({ addTask: function (text) { Tasks.insert({ text: text, createdAt: new Date(), }); }, deleteTask: function (taskId) { var task = Tasks.findOne(taskId); Tasks.remove(taskId); }, setChecked: function (taskId, setChecked) { var task = Tasks.findOne(taskId); Tasks.update(taskId, { $set: { checked: setChecked} }); } });
這是主要的用戶端JavaScript檔案。該檔案也可以被重構,但我們會在這裡編寫所有的用戶端程式碼。首先,我們訂閱在伺服器上發布的任務集合。然後,我們在建立助手能夠處理應用程式邏輯,最後我們定義呼叫來自伺服器的方法事件。
// Subscribing to the published tasks Meteor.subscribe("tasks"); // Show/Hide functionality Template.body.helpers({ tasks: function () { if (Session.get("hideCompleted")) { // If hide completed is checked, filter tasks return Tasks.find({checked: {$ne: true}}, {sort: {createdAt: -1}}); } else { // Otherwise, return all of the tasks return Tasks.find({}, {sort: {createdAt: -1}}); } }, hideCompleted: function () { return Session.get("hideCompleted"); }, incompleteCount: function () { return Tasks.find({checked: {$ne: true}}).count(); } }); // Events for creating new tasks and Show/Hide functionality. Calling methods from the server Template.body.events({ "submit .new-task": function (event) { event.preventDefault(); var text = event.target.text.value; Meteor.call("addTask", text); event.target.text.value = ""; }, "change .hide-completed input": function (event) { Session.set("hideCompleted", event.target.checked); } }); // Events for Deleting and Check/Uncheck functionality Template.task.events({ "click .toggle-checked": function () { // Set the checked property to the opposite of its current value Meteor.call("setChecked", this._id, ! this.checked); }, "click .delete": function () { Meteor.call("deleteTask", this._id); } });
我們正在開發完成後,我們可以在命令提示字元視窗中部署應用程式。應用程式的部署名稱是 my-first-todo-app。
C:\Users\Administrator\Desktop\todo-app>meteor deploy my-first-todo-app
C:\Users\Administrator\Desktop\todo-app>meteor add session
有4個地方要補充第一:執行 meteor add session 安裝session第二:在client/todo-app.js的開始處新增如下內容:引入這些檔案import './todo-app.html'import '../collections/task-collection.js'import { Session } from 'meteor/session'第三:在server/server.js的開始處新增如下內容:引入這些檔案import '../collections/task-collection.js'第四:要修改package.json檔案中的內容,將meteor部分的內容修改成如下:"meteor": { "mainModule": { "client": "client/todo-app.js" "server": "server/server.js" } "testModule": "tests/main.js" }最後祝您順利,執行meteor 啟動專案 提交時間:2019-09-05