getRaw

gets string data from the storage

string getRaw(string name);
namestringthe data key
stringa data item from the storage associated with the key or null

Example

var weather = webix.storage.cookie.getRaw('weather');

Details

The cookie is returned as a raw string. If you need to get the unescaped JSON data, use the get method.

Back to top