所以我有一个使用angular 1和ES2015构建的功能齐全的服务层,在param名称中有一个句点是常见的问题,我尝试将其作为字符串参数,但仍然没有任何工作正常。
someService.getProjects(
{CustomerID: customerID,
'pagination.sortStyle': paginationStyle
}).then(response => {
alert(JSON.stringify(response.data))
}
,function (response) {
alert(response.data)
});
你看到pagination.sortStyle
的地方,就是它不喜欢的地方......任何想法,因为我必须在GET中使用pagination.sortStyle
。