2017-05-17 9 views
0

私はスーパーエージェントで削除を使用する必要がどのように私は現在、どのasp.netを削除するために検索するのは難しいですか興味があります私はこのボタンを持ってフロントエンドとしてasp.netとreactjs asp.netを使用していますreactjsのスーパーエージェントを使用して削除

<td><center><button className ="btn btn-danger" onClick={this.deleteEmployee.bind(this, d.Employee_ID)}>Delete</button></center></td> 

フェッチを使用してどのようにスーパーエージェントに接続しますか? localhostの

http://localhost:5118/api/employeedetails/DeleteEmployeeDetail/ 

答えて

0

使用del()を使用して イムは見documentation

DELETE can be also called as .del() for compatibility with old IE where delete is a reserved word.

npm install superagent

var request = require('superagent'); 

deleteEmployee(id) { 
    request 
     .del('/api/employeedetails/DeleteEmployeeDetail') 
     .send({ id: id }) 
     .set('Accept', 'application/json') 
     .end(function(err, res){}); 
} 
+0

が、私はそれはボタンのIDにどのように接続するのでしょうか? –

+0

あなたの 'deleteEmployee'関数では、上記のコードのようにスーパーエージェントを使います。 –

+0

Uncaught ReferenceError:要求が定義されていません –

関連する問題