我正在尝试在cfscript中使用cflogin。
cflogin() {
cfloginuser(
name = "Bob",
password = "123",
roles = "Account");
};
当我运行它时出现错误:
答案 0 :(得分:3)
问题不在于cflogin甚至是cfscript。 application.cfc
有一行看起来像
<cfscript>
component extends="framework.one" output="false" {
this.name="pca-cf-355";
使用cflogin时,这不是有效的应用程序名称。应用程序名称需要更改
<cfscript>
component extends="framework.one" output="false" {
this.name="pca_cf_355";
请注意使用下划线而不是破折号