threaded_comments属性
threaded_comments属性
获取线索评论列表;
例子
threadedComments = comment1.threaded_comments
for i in range(len(threadedComments)):
tc = threadedComments[i]
note = tc.notes
定义:
@property
def threaded_comments(self):
...
获取线索评论列表;
threadedComments = comment1.threaded_comments
for i in range(len(threadedComments)):
tc = threadedComments[i]
note = tc.notes
@property
def threaded_comments(self):
...