MeteorJS,流路由器 - 未捕获TypeError:pathDef.replace不是函数

时间:2016-03-21 13:06:35

标签: meteor meteor-blaze flow-router

我在MeteorJS中使用Flow Router收到Uncaught TypeError: pathDef.replace is not a function控制台错误。我之前对Flow使用过铁路由器很新,所以可能没有做正确的事情。

请注意,如果我先加载另一个页面然后导航到此页面,它会正常工作,但如果我重新加载页面,则会收到错误。

以下是错误的代码:

客户端模板

{{#if Template.subscriptionsReady}}
  {{#each users}}
    <tr>
        <td>
            {{linkNames profile.firstname profile.lastname}}
        </td>
        <td>
            {{username}}
        </td>
        <td>
            {{emails.[0].address}}
        </td>
        <td>
            {{toUpperCase roles.[0]}}
        </td>
        <td>
            {{getUsernameById createdBy}}
        </td>
        <td>
            <a href="#" class="text-primary admin-edit-user" data-toggle="modal" data-target="#editUser" id="{{_id}}"><i class="fa fa-edit"></i></a>
        </td>
        <td>
            <a href="#" class="text-danger admin-delete-user" id="delete{{_id}}"><i class="fa fa-times"></i></a>
        </td>
    </tr>
    {{else}}
    <tr>
        <td colspan="6">
            <p>There are no users</p>
        </td>
    </tr>
    {{/each}}
    {{else}}
        <p>Loading...</p>
    {{/if}}

公布

/* Users */

Meteor.publish('users', function() {
if (Roles.userIsInRole(this.userId, ['admin', 'team'])) {
    return Meteor.users.find({}, {
        fields: {
            'profile.firstname': 1,
            'profile.lastname': 1,
            'emails': 1,
            'username': 1,
            'roles': 1,
            'createdBy': 1
        },
        sort: {'roles': 1}
    })
} else if (Roles.userIsInRole(this.userId, ['client'])) {
    return Meteor.users.find({}, {
        fields: {
            'profile.firstname': 1,
            'profile.lastname': 1,
            'emails': 1,
            'username': 1
        }
    });
}
});

客户端JS

/* On created */

Template.users.onCreated(function() {
var instance = this;

instance.autorun(function() {
    instance.users = function() {
        instance.subscribe(Meteor.users.find({}));
    }
});
});

/* Helpers */

Template.users.helpers({
users: function() {
    var users = Meteor.users.find({});
    return users;
}
});

我在以下全局帮助程序的其他模板中也收到错误Exception in template helper: TypeError: Cannot read property 'username' of undefined(尽管帮助程序按预期工作):

/* Current Username */

Template.registerHelper('currentUsername', function() {
    return Meteor.user().username;
});

1 个答案:

答案 0 :(得分:1)

您的第一个错误可能是由于路由代码中的错误而发生的。确保您已经定义了路径中的参数,并且正确地在任何路由代码中使用它们。

第二个错误是因为不保证始终立即定义Meteor.user()。将你的助手改为:

Template.registerHelper('currentUsername', function() {
    var user = Meteor.user()
    if( user ) {
      return username;
    }
});