创建Node-Red自定义节点:配置不工作,显示文本框而不是配置下拉列表

hk8txs48  于 2023-04-05  发布在  Node.js
关注(0)|答案(1)|浏览(314)

我目前正在尝试为个人项目创建自定义节点。我需要保存服务器的配置,因此我想使用config node
问题是,在我的自定义节点的“节点属性”中看不到配置选择器,我只看到一个文本框。
这是我的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>
tkclm6bt

tkclm6bt1#

解决方案:

如果有人遇到和我一样的问题,我会把这个贴在这里。似乎问题出在配置凭证的名称上(“服务-用户名”和“服务-密码”)。当我把它们改为“用户名”和“密码”时,所有的工作都和预期的一样。

相关问题