本文整理汇总了TypeScript中models/mixins/validatable.ErrorMessages.mustBePresent方法的典型用法代码示例。如果您正苦于以下问题:TypeScript ErrorMessages.mustBePresent方法的具体用法?TypeScript ErrorMessages.mustBePresent怎么用?TypeScript ErrorMessages.mustBePresent使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models/mixins/validatable.ErrorMessages
的用法示例。
在下文中一共展示了ErrorMessages.mustBePresent方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it("mustBePresent", () => {
expect(ErrorMessages.mustBePresent("id")).toEqual("Id must be present");
expect(ErrorMessages.mustBePresent("PluginId")).toEqual("Plugin id must be present");
expect(ErrorMessages.mustBePresent("pluginId")).toEqual("Plugin id must be present");
expect(ErrorMessages.mustBePresent("plugin_id")).toEqual("Plugin id must be present");
expect(ErrorMessages.mustBePresent("plugin id")).toEqual("Plugin id must be present");
});
示例2: constructor
constructor(url: string,
autoUpdate: boolean,
name: string,
destination: string,
port: string,
useTickets: boolean,
view: string,
username: string,
password: string,
encryptedPassword: string,
filter: Filter,
invertFilter: boolean,
errors: { [key: string]: string[] } = {}) {
super(url, autoUpdate, name, destination, filter, invertFilter, errors);
this.port = stream(port);
this.useTickets = stream(useTickets);
this.view = stream(view);
this.username = stream(username);
this.password = stream(plainOrCipherValue({plainText: password, cipherText: encryptedPassword}));
this.validatePresenceOf("view");
this.validatePresenceOf("port", {message: ErrorMessages.mustBePresent("Host and Port")});
}