I've a route
/notes/#NoteId NoteR GET
From another page, I want to link to it. When using "classic" hamlet, it's easy:
<a href=@{NoteR $ entityKey note}>notetitle
I want my page to be more dynamic and get JSON-data which contains the note-information plus note-id. How do I generate correct and typesafe-links?
I've already this code in a .julius file, but it fails to compile because it expects a "NoteId". I should insert obj.id somewhere in the URL interpolation @{..}... Any clues how to do that?
function loadnotes() {
var list = $("#results");
jQuery.getJSON("@{NotesR}",
function(o){
$.each(o, function (i, obj) {
$('<a href=@{NoteR}/>' + obj.title + '</a>').appendTo(list);
})});
}
window.onload = loadnotes;
EDIT:
I have this in Model.hs:
instance ToJSON (Entity Note) where
toJSON (Entity nid (Note title content created_at updated_at userId)) = object
[ "id" .= nid
, "title" .= title
, "content" .= (unTextarea content)
, "created_at" .= created_at
, "updated_at" .= updated_at
, "userId" .= userId ]
notevalue in the hamlet example is a typed haskell value. Butobjin the julius code is a untyped javascript object. Would it make sense for something without a known type to be part of a type safe url? – Tarrasch Jan 1 at 21:33