我在编码。然后,Java没有评估它。
例如;
import {Push} from 'ionic-native';
initializeApp() {
this.platform.ready().then(() => {
StatusBar.styleDefault();
var push = Push.init({
android: {
senderID: "484777065207"
},
ios: {
alert: "true",
badge: true,
sound: 'false'
},
windows: {}
});
push.on('registration', (data) => {
console.log(data.registrationId);
alert(data.registrationId.toString());
});
push.on('notification', (data) => {
console.log(data);
alert("Hi, Am a push notification");
});
push.on('error', (e) => {
console.log(e.message);
});
});
我在左下角看到此消息。 “评估......”
昨天,该计划是通过自己编码来完成的。但是,今天,没有用。
答案 0 :(得分:1)
第一个println
无法编译 - 您在第一个字符串后缺少+
个符号:
System.out.println("Eleman sayısı:" + names.length);
// Here ----------------------------^