thewei / react-native-store

A simple database base on react-native AsyncStorage.
https://github.com/thewei/react-native-store
Other
569 stars 74 forks source link

removeById return null #56

Open nugasoft opened 7 years ago

nugasoft commented 7 years ago

can someone help me, how I can delete item? When I try delete it, resp always is null.

import Store from 'react-native-store';

const DB = {
    'users': Store.model('users')
}

DB.users.removeById(1).then(resp => { console.log("Data Check: ", resp); })