拼写检查js url post请求不起作用

时间:2015-06-24 16:37:03

标签: spell-checking

我已经安装了拼写检查器插件,它正在文件夹中给出的示例中工作,但是当我使用URL调用时,它没有给出任何结果。这是URL     http://localhost/spellcheck/src/webservices/php/SpellChecker.php?lang=en&driver=pspell&action=get_incorrect_words&text[]=whta

1 个答案:

答案 0 :(得分:0)

如果要检查URL中的拼写,可以创建一个PHP脚本来手动检查并更正拼写。

这是一个例子

我们的网址是127.0.0.1/the-wolrd-needs-you,您可以看到有拼写错误,我们想要更正它。我们将创建一个PHP脚本。

$correct_url = 127.0.0.1/the-world-needs-you //correct url
$url = 127.0.0.1/the-wolrd-needs-you

//To detect if there is a spelling error
if($url==$correct_url) {
   //Do Nothing
} else {
   header("Location: 127.0.0.1/the-world-needs-you")
}

希望能对你有所帮助:)如果没有,我很抱歉或者有点偏离主题XD