Создание собственного узла Node-Red: конфигурация не работает, вместо раскрывающегося списка настроек отображается текстовое поле - PullRequest
0 голосов
/ 26 октября 2018

В настоящее время я пытаюсь создать собственный узел для личного проекта.Мне нужно сохранить конфигурацию моего сервера, поэтому я хочу использовать узел конфигурации

Проблема в том, что вместо того, чтобы видеть селектор конфигурации в «свойствах узла» моего пользовательскогоузел, я вижу только текстовое поле.

Это фрагмент моего файла package.json:

"node-red": {
    "nodes": {
      "authentication": "authentication-node/authentication.js",
      "accessconfig": "configuration-node/configuration.js"
    }
}    

Мой файл configuration.js:

module.exports = function(RED) {
/*
Configuration node functions
*/
function ConfigurationNode(n) {
    RED.nodes.createNode(this,n);
    this.username = n.username;
    this.password = n.password;
}
RED.nodes.registerType("accessconfig",ConfigurationNode,{
    credentials: {
        username: {type:"text"},
        password: {type:"password"}
    }
});
}

МойФайл configuration.html:

<!--Config node-->
<script type="text/javascript">
RED.nodes.registerType('accessconfig',{
    category: 'config',
    defaults: {
        name: {value:""}
    },
    credentials: {
        service-username: {type:"text"},
        service-password: {type:"password"}
    }
});
</script>

<script type="text/x-red" data-template-name="accessconfig">
<div class="form-row">
    <label for="node-config-input-name"><i class="icon-tag"></i>Name</label>
    <input type="text" id="node-config-input-name">
</div>
<div class="form-row">
    <label for="node-config-input-username"><i class="icon-tag"></i>Username</label>
    <input type="text" id="node-config-input-username">
</div>
<div class="form-row">
    <label for="node-config-input-password"><i class="icon-tag"></i>Password</label>
    <input type="password" id="node-config-input-password">
</div>
</script>

<script type="text/x-red" data-help-name="accessconfig">
<p>Help text.</p>
</script>

Мой файл authentication.js:

module.exports = function(RED) {
/*
Authentication node functions
*/
function AuthenticationNode(config) {
    RED.nodes.createNode(this,config);
    var node = this;
    // Retrieve the configuration node
    node.configuration = RED.nodes.getNode(config.configuration);
    if (node.configuration) {
    } else {

    }
}
RED.nodes.registerType("authentication",AuthenticationNode);
}

Мой файл authentication.html:

<!-- Authentication node-->
<script type="text/javascript">
RED.nodes.registerType('authentication',{
    category: 'test',
    color: '#a6bbcf',
    defaults: {
        name: {value:""},
        configuration: {value:"",type:"accessconfig",required:true}
    },
    inputs:0,
    outputs:0,
    icon: "file.png",
    label: function() {
        return this.name||"Authentication";
    }
});
</script>

<script type="text/x-red" data-template-name="authentication">
<div class="form-row">
    <label for="node-input-name"><i class="icon-tag"></i> Name</label>
    <input type="text" id="node-input-name" placeholder="Name">
</div>
<div class="form-row">
    <label for="node-input-configuration">Configuration</label>
    <input type="text" id="node-input-configuration">
</div>
</script>

<script type="text/x-red" data-help-name="authentication">
<p>Help text.</p>
</script>

1 Ответ

0 голосов
/ 02 ноября 2018

Решение:

Я опубликую это здесь, если кто-то столкнется с той же проблемой, что и я. Кажется, что проблема была в имени учетных данных конфигов («service-username» и «service-password»). Когда я изменил их на «имя пользователя» и «пароль», все работало как положено.

...