将参数从 AngularJS 发送到 Options HTTP API 的正确方法是什么?

What's the correct way to send parameters from AngularJS to an Options HTTP API?

在带参数的选项 HTTP API 之间进行对话的正确代码是什么?

        return $http( {
            method: 'OPTIONS',
            url: apiUrl + '/Options/' + clientID
        } ).error( function ( a, b, c, d, e ) {
            console.log( 'a, b, c, d, e', a, b, c, d, e );
        } );

试试这个方法

        return $http( {
            method: 'OPTIONS',
            url: apiUrl + '/Options?clientID=' + clientID
        } ).error( function ( a, b, c, d, e ) {
            console.log( 'err' );
        } );