2016-08-29 116 views

回答

1

你不能從客戶端做到這一點。您可以使用SQL查詢手動刪除行或使用下面描述的自定義API或表腳本中的方法刪除行:

var table = req.azureMobile.tables('tableName').truncate().then(function() { 
    res.send('Table truncated') 
}) 
相關問題