我需要一些帮助来尝试使用 Phonegap 使用 cordova.exec 执行插件。
我在这里按照教程进行操作:WP插件教程
但是,当我尝试运行它时,出现以下错误:
Error::Plugin not allowed in config.xml. Echo
这是我从 javascript 调用它的方式:
cordova.exec(function(){ console.log("success");}, function(){console.log("fail");}, "Echo", "echo", ["input string"]);
这是我的 Echo.cs
using WPCordovaClassLib.Cordova;
using WPCordovaClassLib.Cordova.Commands;
using WPCordovaClassLib.Cordova.JSON;
namespace Cordova.Extension.Commands
{
public class Echo : BaseCommand
{
public void echo(string options)
{
string optVal = JsonHelper.Deserialize<string[]>(options)[0];
DispatchCommandResult(new PluginResult(PluginResult.Status.OK, "Everything went as planned, this is a result that is passed to the success handler."));
}
}
}