想象一下你有这条线:
var result = content['aPossbileValue'] || $el.data('root-path') + content.type + '/something/' + content.slug;
线路长度太长,所以我想知道我该如何改进?
可能的选项:
var result = content['aPossbileValue']
|| $el.data('root-path') + content.type + '/something/' + content.slug;
var result = content['aPossbileValue'] ||
$el.data('root-path') + content.type + '/something/' + content.slug;
var result = content['aPossbileValue']
|| $el.data('root-path') + content.type + '/something/' + content.slug
或者也许这被认为是一种不好的做法!
让我知道你的意见^^!