书栈网 · BookStack 本次搜索耗时 0.027 秒,为您找到 154 个相关结果.
  • Security

    431 2020-01-12 《Meteor Guide 1.8》
    Security Introduction Concept: Attack surface Avoid allow/deny Methods Validate all arguments mdg:validated-method Don’t pass userId from the client One Method per action Ref...
  • Package.js

    625 2020-01-12 《Meteor API Docs 1.8》
    Package.js Package.describe(options) Options Package.onUse(func) Arguments api.versionsFrom(meteorRelease) Arguments api.use(packageNames, [architecture], [options]) Argumen...
  • Check

    366 2020-01-12 《Meteor API Docs 1.8》
    Check check(value, pattern) Arguments Match.test(value, pattern) Arguments Match Patterns Check The check package includes pattern checking functions useful for checking ...
  • EJSON

    371 2020-01-12 《Meteor API Docs 1.8》
    EJSON EJSON.parse(str) Arguments EJSON.stringify Arguments EJSON.fromJSONValue(val) Arguments EJSON.toJSONValue(val) Arguments EJSON.equals(a, b, [options]) Arguments Opt...
  • Passwords

    554 2020-01-12 《Meteor API Docs 1.8》
    Passwords Accounts.createUser(options, [callback]) Arguments Options Accounts.setUsername(userId, newUsername) Arguments Accounts.addEmail(userId, newEmail, [verified]) Argum...
  • dynamic-import

    591 2020-01-12 《Meteor API Docs 1.8》
    dynamic-import Usage The .then() method of the Promise By await-ing in an asynchronous function Using import() with dynamic expressions Difference to other bundling systems ...
  • Email

    339 2020-01-12 《Meteor API Docs 1.8》
    Email Email.send(options) Options Email Documentation of Meteor's email API. The email package allows sending email from a Meteor app. To use it, add thepackage to your p...
  • webapp

    373 2020-01-12 《Meteor API Docs 1.8》
    webapp webapp Documentation of Meteor's webapp package. The webapp package is what lets your Meteor app serve content to a webbrowser. It is included in the meteor-base s...
  • Writing npm Packages

    425 2020-01-12 《Meteor Guide 1.8》
    Writing npm Packages Including in your app Publishing your package Overriding packages with a local version Writing npm Packages To create a new npm package: mkdir my - pa...
  • Publications and Data Loading

    498 2020-01-12 《Meteor Guide 1.8》
    Publications and Data Loading Publications and subscriptions Defining a publication Organizing publications Subscribing to data Stopping Subscriptions Subscribe in UI component...