我可以在设备就绪功能,device.uui等之后成功直接使用cordova设备插件。但是如果我将设备调用放在一个功能中它不起作用。只能在不使用函数的情况下使用device.uui,device.platform等
logUserDevice();
function logUserDevice() {
//Device information
var uuid = device.uuid;
var platform = device.platform;
var model = device.model;
var version = device.version;
//ajax request to the server
var link = 'server call';
$.get(link);
}