0
使用dojo調用JsonRest時,如何傳遞參數。使用參數調用dojo JsonRest
var rest = new JsonRest({
target: "/path/to/service"
});
使用dojo調用JsonRest時,如何傳遞參數。使用參數調用dojo JsonRest
var rest = new JsonRest({
target: "/path/to/service"
});
JsonRest例如:
require(["dojo/store/JsonRest"], function(JsonRest){
// create a store with target your service
var store = new JsonRest({
target: "/path/to/service"
});
// make a get request passing some options
store.query("foo=bar", {
start: 5,
count: 5,
sort: [
{ attribute: "color", descending: true }
]
}).then(function(results){
// result here
});
});
功能你的情況使用是query
與簽名query(query, options)
當被調用時,query
將觸發一個GET請求到{target}?{query}
,如在dojo docs說明。
請記住:
您的服務/ API應該: