removeItem
Find and remove objects
my_collection.removeItem(
{key: value},
() => // removed successfully,
(error) => alert(error)
);
parameter | required | types |
object to remove | yes | object |
success callback | yes | function |
failure callback | yes | function |
import React,{useEffect} from 'react';
import {Text} from 'react-native';
import {Pleex} from 'pleex';
const App = () => {
// Create collection
const my_collection = Pleex.collection('myCollection');
// Get all data saved
my_collection.removeItem(
{ age: 12 },
() => // Success,
(error) => alert(error)
);
return (
<>
<Text>Try remove Item api</Text>
</>
);
};
export default App;
Last modified 3yr ago