docs中说过如何获得资产:
const contentful = require('contentful')
const client = contentful.createClient({
space: '<space_id>',
accessToken: '<content_delivery_api_key>'
})
client.getAsset('<asset_id>')
.then((asset) => console.log(asset))
.catch(console.error)
但是并没有说如何在JS SDK中应用查询参数。我希望能够使用API(this way)请求图像的宽度和高度。