拼写检查器 js url post 请求不工作

spell checker js url post request not working

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

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

这里有一个例子

我们的 url 是 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