AngularJS使用包含句点的param传递数据问题

时间:2016-06-02 15:21:46

标签: angularjs ecmascript-6

所以我有一个使用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

0 个答案:

没有答案