我正在尝试使用带有 ColdFusion 后端的 AngularJS,但遇到了一些障碍。我正在使用 CF Art Gallery 数据库修改他们的“待办事项”应用程序http://angularjs.org/ 。我正在尝试使用 AJAX 将 ColdFusion CFC 链接到 Angular 应用程序。
下面是我的艺术家.cfc:
<cfcomponent>
<cffunction name="getArtists" access="remote" >
<cfargument name="firstName" default="">
<cfargument name="lastName" default="">
<cfquery name="getArtists_sql" datasource="cfartgallery">
SELECT
firstname as text,
lastname as done
FROM artists
WHERE 0=0
<cfif firstName neq "">
AND ucase(firstname) like ucase('%#FIRSTNAME#%')
</cfif>
<cfif lastName neq "">
OR ucase(lastname) like ucase('%#LASTNAME#%')
</cfif>
</cfquery>
<cfreturn getArtists_sql>
</cffunction>
</cfcomponent>
我使用带有以下代码的 AngularJS 调用 CFC:
function TodoCtrl($scope, $http) {
$http.get('cfc/artists.cfc?method=getArtists&returnformat=json').
success(function (response) {
$scope.todos = data.DATA;
}).
error(function (data) {
$scope.todos = data;
});
}
我知道我得到了回复。下面是 Chrome 的开发者工具为我返回的 JSON 字符串:
{
"COLUMNS":
["TEXT","DONE"],
"DATA":[
["Aiden","Donolan"],
["Austin","Weber"],
["Elicia","Kim"],
["Jeff","Baclawski"],
["Lori","Johnson"],
["Maxwell","Wilson"],
["Paul","Trani"],
["Raquel","Young"],
["Viata","Trenton"],
["Diane","Demo"],
["Anthony","Kunovic"],
["Ellery","Buntel"],
["Emma","Buntel"],
["Taylor Webb","Frazier"],
["Mike","Nimer"]
]}
这看起来不像他们演示中使用的符号 Angular:
[
{text:'learn angular', done:true},
{text:'build an angular app', done:false}
]
有人可以指出我如何才能让它正常工作的正确方向吗?理想情况下,我希望保持 CFC 完整,以便可以将其重用于不同的应用程序,因此 JSON 操作必须在 Javascript 端完成。