iron-router

    0熱度

    1回答

    我有這樣的HomeLayout.html: <template name="HomeLayout"> <main> {{>Template.dynamic template=main}} </main> </template> 而一個LoginLayout.html這樣的: <template name="LoginLayout"> <main>

    1熱度

    2回答

    我是Meteor新手,想弄清楚如何最好地設計這個數據庫來存儲和發佈數據。我認爲這將是有意義的使用這些包: https://github.com/aldeed/meteor-autoform https://github.com/aldeed/meteor-simple-schema https://github.com/iron-meteor/iron-router 我不得不爲的課程列表中的集合中

    1熱度

    1回答

    快速的問題: 如何發送數據到GET請求使用鐵服務器端路由? Router.route("/api/test", function() { this.response.writeHead(200, { 'Access-Control-Allow-Origin': '*' }); this.response.statusCode = 200; this

    0熱度

    1回答

    我正在嘗試爲我的項目添加一個推薦系統,因此目前我正在將其建立在this package之外。我遇到的問題是我的項目只使用accounts-google而不是帳戶密碼。該軟件包的工作方式是通過preSignUpHook爲referrerCode(/register?r=ReferralCodeHere)添加鐵路由器query parameters。我相信這隻適用於帳戶密碼不會工作時創建一個API的帳

    0熱度

    2回答

    我有以下途徑: this.route('groupPage', { path: '/group/:_groupId', waitOn: function(){ return Meteor.subscribe("groupPage", this.params._groupId); }, data: function() { var group = Groups.findOne({_id:

    0熱度

    2回答

    我想在我的流星應用上有多個頁面,我正在運行流星1.3.1和最新的鐵路由器。 這是我的main.js文件。 Router.route('/home', function() { this.render('home'); }); Router.route('/register', function() { this.render('register'); }); 這是我的

    1熱度

    1回答

    我實際上正在尋找一種在我的應用上下文中播放動畫的好方法,使用Blaze。 更明確的,我寫了這個超級簡單的例子: <template name="global"> <h1>Hi guys!</h1> {{> foo}} </template> <template name="foo"> <h2>I'm a foo!</h2> <ul> {{#e

    1熱度

    1回答

    我使用Meteor和FlowPlayer(https://flowplayer.org/docs/api.html#load-method)根據用戶所做的選擇加載視頻。我希望在加載模板和{{video}}數據後初始化FlowPlayer。由於我在控制檯中發現以下錯誤: GET http://cdn.flowplayer.org/276539/.webm 404(Not Found) 看起來數據尚未

    0熱度

    1回答

    我有我已經使用了我的app.I一個主佈局已經生成的使用鐵-CLI包我的應用程序和我的主人佈局稱爲master_layout.html TI現在有一個問題。我所有的應用程序菜單都在主佈局中,我需要創建一個不需要菜單的登錄頁面。這可以解決,如果我有第二個主佈局,我可以從我原來的主佈局剝離菜單,並使用我的登錄頁面的佈局。 我的路線是這樣的 Router.route('/Limit/ay', {

    0熱度

    1回答

    我想在鐵路路由器中使用一個參數。我的網址是/activity/dJW9PWJEmSqT3bbSA。 這是我到目前爲止有: Router.route('/activity/:_id', function() { var params = this.params; console.log(params); var activityID = params._id;