我正在尝试使用发送到http://localhost:3030/test/update的更新请求来更新 fuseki :
DELETE { <http://example.org/resource/user38702668> <http://example.org/follower> ?a } INSERT{<http://example.org/resource/user38702668> <http://example.org/follower> <http://localhost/1212>} where{<http://example.org/resource/user38702668> <http://example.org/follower> ?a}
fuseki 网络界面返回
<html>
<head>
</head>
<body>
<h1>Success</h1>
<p>
Update succeeded
</p>
</body>
</html>
但是当我查询http://localhost:3030/test/update时,我仍然在 fuseki 中有原始的三元组(即,不是带有值http://localhost:3030/test/update的更新的三元组)。任何想法?
谢谢